Linux install svn server
Posted 庚武讲堂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux install svn server相关的知识,希望对你有一定的参考价值。
ref: http://blog.csdn.net/pingnanlee/article/details/8812520 1. yum -y install subversion 2. svnadmin create /opt/svn-repo/project1 3. [[email protected] conf]# ls authz passwd svnserve.conf (1)svnserve.conf: svn服务配置文件下。 [general] anon-access = none auth-access = write password-db = /opt/svn-repo/project1/conf/passwd authz-db = /opt/svn-repo/project1/conf/authz (2)passwd: 用户名口令文件。 (3)authz: 权限配置文件。 4. svnserve -d -r /opt/svn-repo/ # netstat -anp | grep svn tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN 8968/svnserve 5. killall svnserve
以上是关于Linux install svn server的主要内容,如果未能解决你的问题,请参考以下文章