svn安裝和配置

2021-08-30 16:37:27 字數 1402 閱讀 8051

step2)建立repository

開啟命令視窗, 鍵入 svnadmin create d:\deploy\projects\searchz

step3)配置repository

進入repository目錄,在本文中是d:\deploy\projects\searchz,你會看到conf目錄,進入該目錄,你會看到svnserve.conf和passwd兩個檔案

對兩個檔案作如下修改

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 conf directory.

### uncomment the line below to use the default password file.

password-db = passwd

使用者檔案配置說明

passwd

[users]

# harry = harryssecret

# sally = sallyssecret

weip=weip

authz許可權檔案修改說明

[groups]

all = test, root (組=使用者)

[/]

* = r (提示無許可權的時候加入)

[searchz:/] (設定倉庫檔案訪問許可權說明)

root = rw

test = rw

我不再對上面兩個檔案具體內容作出解釋,我相信各位一看就懂,我需要提醒的就是 一開始svnserve.conf中的[general] 和 passwd 中的 [users]  行前有#,一定要去掉,否則會拋錯

step4)啟動subversion伺服器

開啟命令視窗鍵入svnserve -d -r d:\deploy\projects,預設埠是3690,如果不幸這個埠被別的程式暫用,可以通過選項 --listen-port=繫結埠

SVN的安裝和配置

工具 1.windows 2003 sp1 2.svn 1.3.0 setup.exe svn服務端軟體 3.svnservice.exe 新增到windows服務需要的工具 4.tortoisesvn 1.4.0.7501 win32 svn 1.4.0.msi svn客戶端軟體 5.langua...

Ubuntu安裝和配置SVN

ubuntu 版本為1204server 安裝svn apt get install subversion建立svn倉庫 mkdir p home svn test 建立倉庫目錄 mkdir p home svn test 2 svnadmin create home svn test 建立倉庫,執...

Linux下SVN安裝和配置

linux下svn安裝配置 第一章 安裝 1.採用原始檔編譯安裝。原始檔共兩個,為 subversion 1.6.1.tar.gz subversion 原始檔 subversion deps 1.6.1.tar.gz subversion依賴檔案 注意檔案版本必須一致,否則很容易產生各種奇怪的問題...