1. 进入svn 版本库

  2. 创建svn 版本库
    svnadmin create faceidentity

  3. 进入新建的版本库库目录
    cd faceidentit

  4. 进入版本库配置目录
    cd conf

  5. 配置 访问权限
    vim authz
    添加一下内容:
    owner = yucihai,zhangpan,liufuhai
    [faceidentity:/]
    @owner = rw
    linux 新建svn版本库

  6. 配置用户密码
    vim passwd
    添加内容如下:
    yucihai = 123456
    zhangpan = 123456
    liufuhai = 123456
    linux 新建svn版本库

  7. 配置服务启动文件
    vim svnserve.conf
    填充内容如下:
    anon-access = none
    auth-access = write

password-db = passwd

authz-db = authz

realm = faceidentity

linux 新建svn版本库

7 停止svn 服务
killall svnserve

8 启动svn服务
svnserve -d -r /var/svn
linux 新建svn版本库

相关文章:

  • 2021-04-01
  • 2022-12-23
  • 2022-02-15
  • 2021-07-03
  • 2022-12-23
  • 2021-10-25
猜你喜欢
  • 2022-12-23
  • 2021-04-14
  • 2021-10-09
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2021-06-02
相关资源
相似解决方案