美文网首页
Debian 上安装SVN 过程

Debian 上安装SVN 过程

作者: 42cc8919e42f | 来源:发表于2017-07-14 16:24 被阅读0次
    • 安装软件包
      apt-get install subversion

    • 创建SVN 文件目录
      svnadmin create --fs-type fsfs /home/svnfile

    • 修改SVN 配置
      修改/home/svn/conf/svnserver.conf 文件

    放开这些注释
    anon-access = read
    auth-access = write
    password-db = passwd
    realm = My First Repository
    
    • 创建SVN 用户
      修改/home/svn/conf/passwd 文件
    [users]
    username1 = password1
    username2 = password2
    
    • SVN 用户授权
      修改/home/svn/conf/authz 文件
    最后位置添加
    [\]
    username1 = rw
    username2 = r
    
    • 启动SVN 服务
      svnserve -d -r /home/svn

    • SVN 地址
      svn://ip/

    相关文章

      网友评论

          本文标题:Debian 上安装SVN 过程

          本文链接:https://www.haomeiwen.com/subject/whcohxtx.html