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.
[root@localhost 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

 

posted @ 2017-11-30 11:51  庚武  Views(401)  Comments(0Edit  收藏  举报