溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

svn實(shí)時(shí)同步案例!

發(fā)布時(shí)間:2020-07-24 06:30:20 來源:網(wǎng)絡(luò) 閱讀:2418 作者:任志遠(yuǎn)Ray 欄目:網(wǎng)絡(luò)安全

svnsync應(yīng)用場景:

1、減緩單個(gè)svn版本庫的壓力

2、更合理分配資源權(quán)限


svn實(shí)時(shí)同步配置:(安全考慮,svn端口和版本庫用中文代替)

svn主從搭建:
環(huán)境:192.168.1.221  主
      192.168.1.217  從

1、主從分別安裝svn版本庫(略過)
svn主:
[root@svn hooks]# cp pre-revprop-change.tmpl pre-revprop-change
[root@svn hooks]# chmod +x pre-revprop-change
vim pre-revprop-change
if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:log" ]; then exit 0; fi

echo "Changing revision properties other than svn:log is prohibited" >&2
exit 0

[root@svn ~]# svnsync init svn://192.168.1.221/版本庫   svn://192.168.1.217/版本庫  --source-username renzhiyuan --source-password renzhiyuan --sync-username renzhiyuan --sync-password renzhiyuan

svn從:
[root@svnbak ~]# cd /usr/local/版本庫/hooks/
[root@svnbak hooks]# cp pre-revprop-change.tmpl pre-revprop-change
[root@svnbak hooks]# chmod +x pre-revprop-change
vim pre-revprop-change
if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:log" ]; then exit 0; fi

echo "Changing revision properties other than svn:log is prohibited" >&2
exit 0

初始化備份svn:(初始化之前主庫不要存放東西)
[root@svn ~]# svnsync init svn://192.168.1.217/版本庫    svn://192.168.1.221/版本庫 --source-username renzhiyuan --source-password renzhiyuan --sync-username  renzhiyuan --sync-password renzhiyuan
-----------------------------------------------------------------------
注意!  你的密碼,對于認(rèn)證域:

   <svn://192.168.1.217:端口> 

只能明文保存在磁盤上!  如果可能的話,請考慮配置你的系統(tǒng),讓 Subversion
可以保存加密后的密碼。請參閱文檔以獲得詳細(xì)信息。

你可以通過在“/root/.subversion/servers”中設(shè)置選項(xiàng)“store-plaintext-passwords”為“yes”或“no”,
來避免再次出現(xiàn)此警告。
-----------------------------------------------------------------------
保存未加密的密碼(yes/no)?yes
svnsync: 目標(biāo)版本庫已經(jīng)與“svn://192.168.1.221/版本庫 ”同步
[root@svn ~]#

測試數(shù)據(jù)開始同步:
[root@svn ~]# svnsync sync --non-interactive svn://192.168.1.217/版本庫  -source-username renzhiyuan --source-password renzhiyuan --sync-username renzhiyuan --sync-password renzhiyuan
傳輸文件數(shù)據(jù).
已提交版本 1。
復(fù)制版本 1 的屬性。
[root@svn ~]#
#################################################################################
自動(dòng)同步配置:
主庫:
[root@svn hooks]# pwd
/usr/local/版本庫/hooks
[root@svn hooks]# cp post-commit.tmpl post-commit
[root@svn hooks]# chmod +x post-commit

[root@svn hooks]# vim post-commit

#REPOS="$1"
#REV="$2"

#mailer.py commit "$REPOS" "$REV" /path/to/mailer.conf
echo off 
svnsync sync --non-interactive svn://192.168.1.217/版本庫   --source-username renzhiyuan --source-password renzhiyuan --sync-username renzhiyuan --sync-password renzhiyuan

效果

svn實(shí)時(shí)同步案例!


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI