在/etc/services文件中有如下的兩行,這是配置服務(wù)的:
cvspserver 2401/tcp # CVS client/server operations
cvspserver 2401/udp # CVS client/server operations
然后如果是使用.netd來啟動(dòng),那么需要修改修改/etc/inetd.conf文件,如果使用xinetd,那么需要在/etc/xinetd.d/目錄下加入一個(gè)啟動(dòng)cvs的腳本我的系統(tǒng)使用的是red hat7.0,所以加入如下的腳本到/etc/xinetd.d/下
[root@local /]# less /etc/xinetd.d/cvspserver
# default: off
# description: The SPOP3 service allows remote users to aclearcase/" target="_blank" >ccess 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,很簡(jiǎn)單的。
完成這些之后,可以重新啟動(dòng)inetd/xinetd了。
然后執(zhí)行cvs的命令可以正常使用cvs了。
不過需要注意的是遠(yuǎn)程使用需要設(shè)置一下客戶機(jī):
CVSROOT=:pserver:user@host:/cvsrootdir:
export CVSROOT
cvs login
需要將前面兩句加入到你的啟動(dòng)腳本中去。
如果還有什么問題,請(qǐng)?jiān)L問http://www.cvshome.org/docs/manual/