Linux CVS Server + jCVS-5.3.2 Client分散式開發(二) (轉)

worldblog發表於2007-12-12
Linux CVS Server + jCVS-5.3.2 Client分散式開發(二) (轉)[@more@]

Server:namespace prefix = o ns = "urn:schemas--com::office" />

首先新增cvs和使用者組,以使用者執行下面命令(如果是Free 請用pw 命令):

# groupadd cvs

# useradd –g cvs cvsroot

建立cvs的主目錄:

# mkdir /export #注:/export是你的cvsroot目錄。

修改/export目錄的屬組為cvsroot使用者和cvs組為770使同組成員可以讀寫該目錄:

# chown cvsroot /export

# chgrp cvs /export

# chmod 770 /export

初始化cvs服務的主目錄:

# cvs –d /export init

修改/etc/d.conf使cvs服務能夠響應客戶端的cvs請求,在/etc/inetd.conf檔案裡面加入一行:

cvspserver stream tcp nowait root /usr/bin/cvs cvs -b /usr/bin --allow-root /export pserver

修改/etc/services,如果該檔案裡沒有下面兩行請自己加上:

cvspserver  2401/tcp  # CVS client/server operations

cvspserver  2401/udp  # CVS client/server operations

請注意這裡的伺服器名cvspserver是和/etc/inetd.conf檔案中一致的。

重新啟動inetd程式使改變生效:

# /etc/rc.d/init.d/inetd restart或執行

# killall –HUPd

也可以達到同樣的目的。但在這裡我建議你reboot

這時在cvs伺服器上執行

$ netstat –na|grep 2401

就應該可以看到cvs服務偵聽在2401埠

tcp  0  0 0.0.0.0:2401  0.0.0.0:*  LISTEN

這時cvs的伺服器環境就基本搭建好了。

Linux pserver 啟動:

如果是Redhat Linux 在xinetd.d中加一個檔案。啟動pserver

1.修改/etc/services,如果該檔案裡沒有下面兩行請自己加上:

cvspserver  2401/tcp  # CVS client/server operations

cvspserver  2401/udp  # CVS client/server operations

2. 在/etc/xinetd.d/下建立cvspserver 檔案。

service cvspserver{

disable=no

socket_type=stream

wait =no

user =cvsroot

server = /usr/bin/cvs

server_args = --allow-root=/cvsroot

log_on_suceess +=USERID

log_on_failure +=USERID

}

如果有多個庫,如下:

server_args = --allow-root=/cvsroot --allow-root=/product

3. 重啟xinet.d


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-992135/,如需轉載,請註明出處,否則將追究法律責任。

相關文章