Red Hat 自带 Svn 的配置

来源:互联网 发布:matlab caffe模型 编辑:程序博客网 时间:2024/06/06 00:27
Red Hat 自带 Svn 的配置
1. 内置的 SVN 的配置 :
[root@localhost ~]# mkdir -p /opt/svn/svndata/[root@localhost ~]# cd  /opt/svn/svndata/[root@localhost svndata]#  svnadmin create repos[root@localhost svndata]# lsrepos[root@localhost svndata]# cd repos[root@localhost repos]# lsconf  dav  db  format  hooks  locks  README.txt[root@localhost repos]# vi /conf/svnserver.conf[general]anon-access = noneauth-access = writepassword-db = /opt/svn/svndata/pwd.confauthz-db = /opt/svn/svndata/authz.confrealm = repos[root@localhost repos]# svnserve -d --listen-port 9999 -r /opt/svn/svndata[root@localhost repos]# ps -ef|grep svnserveroot     13583     1  0 06:41 ?        00:00:01 gedit file:///opt/svn/svndata/repos/conf/svnserve.confroot     14550     1  0 06:52 ?        00:00:00 svnserve -d --listen-port 9999 -r /opt/svn/svndataroot     14669  7662  0 06:53 pts/1    00:00:00 grep svnserve