在/etc/services文件中有如下的两行,这是配置服务的:
cvspserver 2401/tcp # CVS client/server operations
cvspserver 2401/udp # CVS client/server operations
然后如果是使用.netd来启动,那么需要修改修改/etc/inetd.conf文件,
如果使用xinetd,那么就需要在/etc/xinetd.d/目录下加入一个启动cvs的脚本
我的系统使用的是red hat7.0,所以就加入如下的脚本到/etc/xinetd.d/下
[root@local /]# less /etc/xinetd.d/cvspserver
# default: off
# description: The SPOP3 service allows remote users to access their mail \
# using an POP3 client with SSL support such as Netscape \
# Communicator or fetchmail.
service cvspserver
{
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/bin/cvs
server_args = --allow-root=/source pserver
log_on_success += USERID
log_on_failure += USERID
disable = no
}
如果使用inetd,也可以修改inetd.conf,很简单的。
完成这些之后,就可以重新启动inetd/xinetd了。
然后执行cvs的命令就可以正常使用cvs了。
不过需要注意的是远程使用需要设置一下客户机:
CVSROOT=:pserver:user@host:/cvsrootdir:
export CVSROOT
cvs login
需要将前面两句加入到你的启动脚本中去。
如果还有什么问题,请访问http://www.cvshome.org/docs/manual/
文章来源于领测软件测试网 https://www.ltesting.net/
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073