標籤:blog class c tar http a
1、安裝SVN伺服器,到http://subversion.apache.org/packages.html上下載windows版的SVN,並安裝,在命令列下運行svn命令,如下所以,則svn伺服器安裝成功。
- C:\Documents and Settings\Administrator>svn
- 使用“svn help”得到用法。
2、建立倉庫Repository:運行命令
- C:\Documents and Settings\Administrator>svnadmin create G:\svn
該命令會在G盤下自動建立一個名字為svn的檔案夾,該檔案中的內容如非必要,不要手動修改,其內容是由svn自動維護的,各自得用途:
conf裡檔案夾中都是這個倉庫的設定檔。
db是真正用來儲存資料版本的地方。
hooks檔案夾中的內容用以定義某些動作觸發的hook指令碼。
locks中的檔案用於在某些分支或者檔案上加鎖。
3、建立使用者:進入conf目錄(本例中是G:\svn\conf),開啟svnserve.conf檔案,找到如下內容:
- [general]
- ### These options control access to the repository for unauthenticated
- ### and authenticated users. Valid values are "write", "read",
- ### and "none". The sample settings below are the defaults.
- # anon-access = read
- # auth-access = write
- ### The password-db option controls the location of the password
- ### database file. Unless you specify a path starting with a /,
- ### the file‘s location is relative to the directory containing
- ### this configuration file.
- ### If SASL is enabled (see below), this file will NOT be used.
- ### Uncomment the line below to use the default password file.
- # password-db = passwd
將
- # anon-access = read
- # auth-access = write
- # password-db = passwd
中的注釋去掉修改為
- anon-access = read
- auth-access = write
- password-db = passwd
這樣就可以使用passwd檔案中的使用者了。
開啟passwd(和svnserve.conf在同目錄下),可以看到,建立好的兩個使用者都被注釋掉了,可以修改者兩個使用者,也可以建立自己的使用者,這裡我新建立了一個自己的使用者,passwd檔案被修改為:
- [users]
- # harry = harryssecret
- # sally = sallyssecret
- admin=admin
4、啟動SVN伺服器,運行命令svnserve -d -r G:\svn,就可以啟動服務
- C:\Documents and Settings\Administrator>svnserve -d -r G:\svn
-d表示後台運行,-r表示以超級管理員的方式運行,G:\svn是指SVN所管理的倉庫。
5、配置SVN伺服器開機啟動
開啟一個DOS視窗,在任意目錄下執行下面的命令:
- //在命令中的每一個等號後面都要有一個空格否則命令執行失敗
- sc create svnserve binPath= "\"D:\Apache-Subversion-1.8.9\bin\svnserve.exe\" --service --root d:\projects" displayname= "SVN Serve" depend= Tcpip start= auto
其中,sc是windows內建的服務配置程式,參數binPath表示svnserve可執行檔的安裝路徑,由於路徑中的"Program Files"帶有空格,因此整個路徑需要用雙引號引起來。而雙引號本身是個特殊字元,需要進行轉移,因此在路徑前後的兩個雙引號都需要寫成\"
--service參數表示以windows服務的形式運行,--root指明svn repository的位置,service參數與root參數都作為binPath的一部分,因此與svnserve.exe的路徑一起被包含在一對雙引號當中,而這對雙引號不需要進行轉義。
displayname表示在windows服務列表中顯示的名字, depend =Tcpip 表示svnserve服務的運行需要tcpip服務,start=auto表示開機後自動運行。
安裝服務後,svnserve要等下次開機時才會自動運行。
若要卸載svn服務,則執行 sc delete svnserve 即可
這樣SVN的配置就完成了,到http://tortoisesvn.net/downloads.html下載一個SVN用戶端,就可以使用了。
------------------------------------------------------------------------------------------------------------------
來源於:http://www.cnblogs.com/jinmingjie/archive/2012/06/05/2536995.html