CVS 远程设置

2021/5/23 18:55:42

本文主要是介绍CVS 远程设置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

suse-tom:~ # vim /etc/xinetd.d/cvspserver
suse-tom:~ # service xinetd restart

/etc/xinetd.d/cvspserver文件

# CVS pserver (remote acces to your CVS repositories)
# Please read the section on security and passwords in the CVS manual,
# before you enable this.
# default: off

service cvspserver
{
        disable         = no
        socket_type     = stream
        protocol        = tcp
        port            = 2401
        wait            = no
        user            = root
        server          = /usr/bin/cvs
        server_args     = -f --allow-root=/home/tom/cvs pserver
}


这篇关于CVS 远程设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程