Home > Archives > Ubuntu搭建SVN服务器

Ubuntu搭建SVN服务器

Publish:

在Ubuntu上搭建SVN服务器

1.在Ubuntu软件中心搜索subversion安装或者在终端输入apt-get install subversion;

2.创建SVN库:以root身份输入命令svnadmin create /home/svnrepos(/home/svnrepos为库所在目录);

3.修改配置:输入 gedit /home/svnrepos/conf/svnserve.conf

  1. #匿名访问的权限,可以是read,write,none,默认为read
  2.  anon-access = none
  3. #认证用户的权限,可以是read,write,none,默认为write
  4. auth-access = write
  5. #密码数据库的路径,去掉前面的#
  6.  password-db = passwd

所有参数必须顶格,否则可能报错;

4.配置用户和密码:gedit /home/svnrepos/conf/passwd,在[users]下添加用户名和密码,如:xiaoming = hello;

5.启动SVN服务器:终端输入svnserve –d –r /home/svnrepos –-listen-host 192.168.2.112(您的SVN服务器IP地址)

 

声明: 本文采用 BY-NC-SA 授权。转载请注明转自: Alfred

blog comments powered by Disqus