1、 安裝xinetd
rpm –ivh xinetd-2.3.14-10.el5.i386
2、 檢視是否安裝了cvs
rpm –qa | grep cvs
3、 解除安裝cvs
rpm -e cvs-1.11.22-5.el5
4、 解壓cvs
tar -jxvf cvs-1.11.22.tar.bz2
5、 進入cvs-1.11.22目錄
cd cvs-1.11.22
6、 安裝cvs
./configure
make
make install
7、 添加cvs組合cvsroot使用者(密碼為cvsroot)
groupadd cvs
useradd -g cvs -d /home/cvsrootcvsroot
passwd cvsroot
8、 登陸cvsroot使用者并建立倉庫
su - cvsroot
mkdir /home/cvsroot/cvsrepos
cvs -d /home/cvsroot/cvsrepos init
9、 在cvsroot使用者的.bash_profile檔案中添加export CVS_RSH=ssh
vi .bash_profile
source .bash_profile
10、 使用root使用者在目錄/etc/profile.d添加如下兩個檔案cvs.sh和cvs.csh,同時修改權限
cd /etc/profile.d
cvs.sh的内容
export CVS_RSH=ssh
cvs.csh的内容
setenv CVS_RSH ssh
chmod 755 cvs.sh
chmod 755 cvs.csh
11、 使用root使用者在/etc/xinetd.d增加cvs檔案,内容如下
service cvspserver
{
disable = yes
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/bin/cvs
server_args = -f --allow-root=/home/cvsroot/cvsrepospserver
}
12、 使用cvsroot使用者在.ssh目錄建立 authorized_keys檔案(使用者的添加就是往authorized_keys檔案中添加公鑰)
mkdir .ssh
cd .ssh
cat id_rsa.pub >>authorized_keys
13、 在eclipse配置ssh和通路cvs