zoukankan      html  css  js  c++  java
  • svnsync笔记

    svnsync从库配置

    1.创建空的从库 

    root@test: /svn # svnadmin create test

    2.从库用户配置

    修改authz :

    [groups]
    sync = sync
    
    [/]
    @sync = rw

    3.启动从库

    svnserve -d -r /svn

    svnsync主库配置

    1.初始化

    svnsync init svn://192.168.1.12/test https://127.0.0.1/svn/test --sync-username sync --sync-password sync

    2.同步

    svnsync sync svn://192.168.1.12/test

    3.增加主库hook脚本 post-commit.bat

    @echo off
    svnsync synchronize svn://192.168.5.236/test --source-username tangqiang --source-password tangq --sync-username sync --sync-password sync --non-interactive

    4.在主库提交文件测试从库是否自动同步,报错提示:

    synsync:E170013:Unable to connect to a respository at URL 'https://127.0.0.1/svn/test'

    svnsync: E230001: Server SSL certificate verification failed: certificate issued fro a different hostname, issuer is not trusted

    5.修改hook,增加证书信任参数:

    --source-trust-server-cert-failures unknown-ca,cn-mismatch,expired,not-yet-valid,other
    @echo off
    svnsync synchronize svn://192.168.1.12/test --source-username tangqiang --source-password tangq --sync-username sync --sync-password sync --non-interactive --source-trust-server-cert-failures unknown-ca,cn-mismatch,expired,not-yet-valid,other
  • 相关阅读:
    LPR之我见
    安装tensorflow2.2cpu的简洁方法
    anaconda安装keras
    redis 查看当前连接数
    2020 8 14
    docker安装jenkins
    使用docker安装gitlab
    提问:游戏测试与一般的软件测试的区别在哪里?
    “战斗天使”- 测试媛是如何崛起的?
    关系型数据库的几种常用主键
  • 原文地址:https://www.cnblogs.com/justbeginning/p/13706107.html
Copyright © 2011-2022 走看看