YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* svnserveサーバ [#oc6a7b84]
** svnserve設定・アカウント作成 [#ode66a87]
cd /var/svn/repos
vi svnserve.conf
[general]
anon-access = none
password-db = passwd
vi passwd
[users]
taro = taro_passwd
** iptables 設定 [#n100b1ea]
vi /etc/sysconfig/iptables
-A INPUT -i eth1 -m state --state NEW -m tcp -p tcp --dp...
service iptables restart
** svnserve 起動設定 [#k9e0752d]
vi /etc/sysconfig/svnserve
OPTIONS="-r /var/svn/repos"
** svnserve 起動 [#yca9c068]
chkconfig --add svnserve
chkconfig svnserve on
chkconfig --list | grep svnserve
** 動作確認 [#v52164d9]
svn ls --username taror svn://localhost/
** 参考 [#qfd805c9]
http://www.ochounos.com/#blog/10
終了行:
* svnserveサーバ [#oc6a7b84]
** svnserve設定・アカウント作成 [#ode66a87]
cd /var/svn/repos
vi svnserve.conf
[general]
anon-access = none
password-db = passwd
vi passwd
[users]
taro = taro_passwd
** iptables 設定 [#n100b1ea]
vi /etc/sysconfig/iptables
-A INPUT -i eth1 -m state --state NEW -m tcp -p tcp --dp...
service iptables restart
** svnserve 起動設定 [#k9e0752d]
vi /etc/sysconfig/svnserve
OPTIONS="-r /var/svn/repos"
** svnserve 起動 [#yca9c068]
chkconfig --add svnserve
chkconfig svnserve on
chkconfig --list | grep svnserve
** 動作確認 [#v52164d9]
svn ls --username taror svn://localhost/
** 参考 [#qfd805c9]
http://www.ochounos.com/#blog/10
ページ名: