盤點Linux常用運維工具(四)-版本控制篇之SVN
- 2020 年 3 月 26 日
- 筆記
1.SVN簡介和使用
SVN是Subversion的簡稱,是一個開放源代碼的版本控制系統,設計的目標就是取代CVS,相當於CVS,SVN採用了分支管理系統 擴展: CVS是一個C(client)/S(server)系統,是一個常用的代碼版本控制軟件,CVS版本控制系統是一種GUN軟件包,主要用於在多人開發環境下的源碼的維護,之前由於CVS編碼問題,很多軟件開發公司使用SVN替代了CVS 官方網站:http://subversion.apache.org/
#常見的版本控制軟件
1.CVS:逐漸被SVN取代 2.SVN:Subversion是一個集中式的版本控制系統 3.Git:git是一個開源的分佈式版本控制系統 4.GitLab: GitLab是利用 Ruby on Rails 一個開源的版本管理系統,實現一個自託管的Git項目倉庫,可通過Web界面進行訪問公開的或者私人項目
#SVN存儲數據的方式
1.BDB,Berkeley DB,一種事務安全型表類型 2.FSFS,"FSFS" 採用文件系統的方式, 替代原來的基於Berkeley DB的實現. 因為BDB方式在服務器中斷時,有可能鎖住數據,所以還是FSFS方式更安全一點。
#SVN運行的相關端口
獨立服務器 3690端口 訪問方式SVN:// C/S模式 藉助Apache運行 80端口 訪問方式http://
#基本的工作流程
1.開發人員從服務器下載項目最新代碼 2.進入自己的分支,進行開發工作,隔多久向服務器提交自己的代碼 3.下班就把自己開發的分支合併到服務器主分支上
#安裝和部署
#1.安裝
[root@ctos1 ~]# yum install -y subversion
#2.查看svn對應的端口有哪些
[root@ctos1 ~]# cat /etc/services | grep svn svn 3690/tcp # Subversion svn 3690/udp # Subversion svnetworks 2973/tcp # SV Networks svnetworks 2973/udp # SV Networks
#3.創建版本庫目錄
[root@ctos1 ~]# mkdir /webdept #存放版本庫的主目錄 [root@ctos1 ~]# svnadmin create /webdept/www.guokeboy.cn #創建版本庫 [root@ctos1 ~]# svnadmin create /webdept/www.boyguoke.cn #創建第二個版本庫 #提示:svnadmin命令是由subversion軟件包提供的
#4.查看版本庫中的配置文件
[root@ctos1 ~]# ls /webdept/www.guokeboy.cn/ conf db format hooks locks README.txt #配置文件說明 dav目錄 是提供Apache與mod_dav_svn使用的目錄,讓他們存儲內部數據,剛開始新建時沒有 db目錄 所有版本控制的數據存放文件 Hooks目錄 放置hook腳本文件的目錄 locks目錄 用來放置subversion監控鎖定數據的目錄,用來追蹤存取文件庫的客戶端 format文 是一個文本文件 conf目錄 是這個倉庫的配置文件
#5.查看配置文件目錄下的各個文件
[root@ctos1 ~]# ls /webdept/www.guokeboy.cn/conf/ authz passwd svnserve.conf [root@ctos1 ~]# ls -l /webdept/www.guokeboy.cn/conf/ total 12 -rw-r--r-- 1 root root 1080 Mar 24 23:21 authz -rw-r--r-- 1 root root 309 Mar 24 23:21 passwd -rw-r--r-- 1 root root 3090 Mar 24 23:21 svnserve.conf #配置文件說明: authz #認證權限相關 passwd #存放用戶名和密碼文件 svnserve.conf #服務器配置文件
#6.進行配置使用
[root@ctos1 conf]# pwd /webdept/www.guokeboy.cn/conf [root@ctos1 conf]# vim svnserve.conf [general] anon-access = read #打開注釋,匿名用戶訪問可以讀,如果是none就是匿名用戶不可以訪問 auth-access = write #打開注釋,用戶認證可以寫,可以是read,write,none password-db = passwd #打開注釋,密碼庫文件,默認使用的是同一目錄下的passwd文件作為用戶密碼庫 authz-db = authz #打開注釋,認證權限文件 realm = www.guokeboy.cn #打開注釋,設置登錄提示信息
#7.配置用戶和密碼
[root@ctos1 conf]# cat passwd [users] guoke = 123456 top = 123456
#8.配置權限
[root@ctos1 conf]# cat authz [groups] Check = guoke #定義組,在[groups下面添加],格式:用戶組名=用戶1,用戶2 [/] #/表示當前所在版本庫目錄,這裡代表www.guokeboy.cn top = rw #top用戶可以讀寫 @Check = r #Check組的權限,只讀 *= #其他成員沒有權限 #目錄格式: [/目錄名] @用戶組名 = 權限 用戶名 = 權限 *=
#9.啟動服務和查看相關進程
[root@ctos1 conf]# svnserve -d -r /webdept/ #啟動了所有版本庫, 再 –r。如果只需要某一個版本庫,後面添加/webdept/www.xuegod.cn/的版本庫即可 -d=daemon -r=root of directory of save指定根目錄
#10.查看進程
[root@ctos1 conf]# ps aux | grep svn root 1769 0.0 0.0 180736 808 ? Ss 23:30 0:00 svnserve -d -r /webdept/ root 1771 0.0 0.0 112712 952 pts/0 R+ 23:30 0:00 grep --color=auto svn
#11.查看端口
[root@ctos1 conf]# netstat -untpl | grep svn tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN 1769/svnserve
#12.使用svn導入測試代碼
#導入代碼格式:svn[選項] 源碼 svn://server ip/項目名 #常用的選項 Import 將未版本化的文件納入版本控制並提交 Checkout 從版本庫中檢出一個修訂版 Update 更新工作拷貝 Add,delete,copy move 增、刪、複製、移動文件或目錄 Status 檢查狀態差異 Diff 檢查文件行級詳細差異 Revert 恢復 Resolve 解決衝突 Switch 切換工作拷貝對應的版本庫分支 Log 查看歷史記錄 List 顯示文件目錄 Cat 查看某個文件內容
#SVN更多幫助命令
[root@ctos1 conf]# svn help usage: svn <subcommand> [options] [args] Subversion command-line client, version 1.7.14. Type 'svn help <subcommand>' for help on a specific subcommand. Type 'svn --version' to see the program version and RA modules or 'svn --version --quiet' to see just the version number. Most subcommands take file and/or directory arguments, recursing on the directories. If no arguments are supplied to such a command, it recurses on the current directory (inclusive) by default. Available subcommands: add blame (praise, annotate, ann) cat changelist (cl) checkout (co) cleanup commit (ci) copy (cp) delete (del, remove, rm) diff (di) export help (?, h) import info list (ls) lock log merge mergeinfo mkdir move (mv, rename, ren) patch propdel (pdel, pd) propedit (pedit, pe) propget (pget, pg) proplist (plist, pl) propset (pset, ps) relocate resolve resolved revert status (stat, st) switch (sw) unlock update (up) upgrade Subversion is a tool for version control. For additional information, see http://subversion.apache.org/
[root@ctos1 ~]# mkdir localsvn [root@ctos1 ~]# cd localsvn/ [root@ctos1 localsvn]# touch 1.html 2.html [root@ctos1 localsvn]# cd [root@ctos1 ~]# svn import /root/localsvn/ file:///webdept/www.guokeboy.cn/ -m "first edit" Adding localsvn/1.html Adding localsvn/2.html Committed revision 1. //本地導入代碼,使用file,僅僅能在服務器本地導入, -m=messages,類似注釋,首次加入代碼使用import
#13.下載代碼
[root@ctos1 ~]# svn checkout svn://192.168.86.128/www.guokeboy.cn/ test Authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn Password for 'root': #默認回車 Authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn Username: guoke #輸入用戶 Password for 'guoke': #輸入密碼 ----------------------------------------------------------------------- ATTENTION! Your password for authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn can only be stored to disk unencrypted! You are advised to configure your system so that Subversion can store passwords encrypted, if possible. See the documentation for details. You can avoid future appearances of this warning by setting the value of the 'store-plaintext-passwords' option to either 'yes' or 'no' in '/root/.subversion/servers'. ----------------------------------------------------------------------- Store password unencrypted (yes/no)? no #需不需要保存密碼 A test/1.html A test/2.html Checked out revision 1.
#14.開發然後提交代碼
[root@ctos1 ~]# ls localsvn test [root@ctos1 ~]# cd test/ #進入下載代碼的目錄 [root@ctos1 test]# touch 5.html #自己開發代碼 [root@ctos1 test]# svn add 5.html #添加到暫存區 A 5.html [root@ctos1 test]# svn commit -m "new edit" #進行提交, Authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn Password for 'guoke': Authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn Username: top Password for 'top': #注意點:設置用戶權限的時候guoke這個用戶只有隻讀權限,沒有寫權限,如果使用這個用戶來進行提交的話,就會報錯 所有我們需要更換別的有寫的權限的用戶來進行提交 ----------------------------------------------------------------------- ATTENTION! Your password for authentication realm: <svn://192.168.86.128:3690> www.guokeboy.cn can only be stored to disk unencrypted! You are advised to configure your system so that Subversion can store passwords encrypted, if possible. See the documentation for details. You can avoid future appearances of this warning by setting the value of the 'store-plaintext-passwords' option to either 'yes' or 'no' in '/root/.subversion/servers'. ----------------------------------------------------------------------- Store password unencrypted (yes/no)? no Adding 5.html Transmitting file data . Committed revision 2.
2.SVN+Apache使用
#運行原理
SVN搭配Apache的時候,Apache需要使用mod_dav_svn這個模塊,
#運行機制
#需要在一台服務器上建立一個源代碼庫,在用戶使用源代碼庫之前,需要把源代碼庫里的項目文件下載到本地,然後進行開發,再使用svn進行提交,由源代碼庫統一管理修改,mod_dav_svn 可以讓版本庫通過http協議實現網站展現
#實驗環境 一台:svn+http服務器 一台:client server客戶端服務器
#配置
#1.安裝軟件
[root@ctos1 ~]# yum install -y subversion httpd mod_dav_svn
#2.查看apache對svn模塊的支持
[root@ctos1 ~]# cd /etc/httpd/conf.modules.d/ [root@ctos1 conf.modules.d]# cat 10-subversion.conf LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so LoadModule dontdothat_module modules/mod_dontdothat.so [root@ctos1 ~]# ls /etc/httpd/modules/mod_dav_svn.so /etc/httpd/modules/mod_authz_svn.so /etc/httpd/modules/mod_authz_svn.so /etc/httpd/modules/mod_dav_svn.so #兩個模塊對應的物理路徑
#3.配置apache支持svn
[root@ctos1 conf.d]# pwd /etc/httpd/conf.d [root@ctos1 conf.d]# cat subversion.conf <Location /webdept> DAV svn SVNParentPath /webdept AuthType Basic AuthName "www.guokeboy.cn website" AuthUserFile /webdept/svn/passwd AuthzSVNAccessFile /webdept/svn/authz Require valid-user </Location>
#內容解釋:
SVNParentPath /webdept #svn根目錄 AuthType Basic #basic認證方式 AuthName "www.skills.com website" #提示信息 AuthUserFile /webdept/svn/passwd #用戶密碼文件 AuthzSVNAccessFile /webdept/svn/authz #訪問控制權限文件 Require valid-user #允許的用戶
#4.創建用戶passwd文件
[root@ctos1 ~]# mkdir /webdept/svn [root@ctos1 ~]# htpasswd -c /webdept/svn/passwd user1 New password: Re-type new password: Adding password for user user1 [root@ctos1 ~]# htpasswd /webdept/svn/passwd user2 New password: Re-type new password: Adding password for user user2 [root@ctos1 ~]# htpasswd /webdept/svn/passwd user3 New password: Re-type new password: Adding password for user user3 [root@ctos1 ~]# cat /webdept/svn/passwd user1:$apr1$uCWFxUQh$6tdbjdjf5O0y301vJg9wn. user2:$apr1$DAFkK6m/$JWUQkIccwRswDVM8Sy2WM1 user3:$apr1$bJ1LWahb$uIOk6BjrI8FN7fCrmv5Ww1
#提示:使用htpasswd創建用戶的時候,第一次需要使用-c創建,創建第二個用戶的時候不能使用-c,否則內容會被覆蓋,而不是追加
#5.創建權限authz文件
[root@ctos1 ~]# cd /webdept/svn/ [root@ctos1 svn]# ls authz passwd [root@ctos1 svn]# cat authz [groups] all= user1,user2 [/] user1 = rw [www.guokeboy.cn:/] @all = rw [www.boyguoke.cn:/] user2 = rw user3 = rw
#內容解釋:
all = user1,user2 #user1,user2屬於all組 [www.guokeboy.cn:/] @all = rw #這個倉庫,user1,user2可以讀寫 [www.boyguoke.cn:/] user2 = rw user3 = rw #這個倉庫user2,user3可以讀寫
#6.啟動服務然後進行測試
[root@ctos1 ~]# systemctl restart httpd
#7.訪問:
http://192.168.86.128/webdept/www.guokeboy.cn倉庫的時候使用user2登錄,可以讀寫


#8.使用user3訪問www.guokeboy.cn倉庫的時候就會報錯


3.window客戶端使用
#下載鏈接:http://tortoisesvn.net/downloads.html
#1安裝完之後在自己磁盤中創建目錄,然後checkout下來,如我在D創建了svn workdirect目錄

#2.輸入倉庫的URL地址

#3.輸入用戶名和密碼進行認證

#4.將文件checkout到本地目錄

#5.進行開發,然後再提交


#6.然後進行commit提交


#提示:按ok提交的時候有可能需要一個有寫入權限的用戶,還需要將倉庫文件修改為apache權限
[root@ctos1 ~]# chown -R apache.apache /webdept/www.guokeboy.cn/