windows下搭建SVN服务器

  安装svn具体过程参见这位大师的文章:

Windows下在本机创建SVN服务

一 配置篇

1 配置文件路径

D:\Program Files\DEV\svnroot\Algorithm\conf

2 关键配置文件配置

authz 文件关键点

[groups]
group1 = admin
[/]
admin = rw
@group1 = rw

passwd 文件关键点

[users]
admin = admin
#svnserve.conf 文件


### This file controls the configuration of the svnserve daemon, if you ### use it to allow access to this repository. (If you only allow ### access through http: and/or file: URLs, then this file is ### irrelevant.) ### Visit http://subversion.apache.org/ for more information. [general] ### The anon-access and auth-access options control access to the ### repository for unauthenticated (a.k.a. anonymous) users and ### authenticated users, respectively. ### Valid values are "write", "read", and "none". ### Setting the value to "none" prohibits both reading and writing; ### "read" allows read-only access, and "write" allows complete ### read/write access to the repository. ### The sample settings below are the defaults and specify that anonymous ### users have read-only access to the repository, while authenticated ### users have read and write access to the repository. anon-access = none 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 ### The authz-db option controls the location of the authorization ### rules for path-based access control. Unless you specify a path ### starting with a /, the file's location is relative to the the ### directory containing this file. If you don't specify an ### authz-db, no path-based access control is done. ### Uncomment the line below to use the default authorization file. authz-db = authz ### This option specifies the authentication realm of the repository. ### If two repositories have the same authentication realm, they should ### have the same password database, and vice versa. The default realm ### is repository's uuid. realm = lotte_Indonesia_rec ### The force-username-case option causes svnserve to case-normalize ### usernames before comparing them against the authorization rules in the ### authz-db file configured above. Valid values are "upper" (to upper- ### case the usernames), "lower" (to lowercase the usernames), and ### "none" (to compare usernames as-is without case conversion, which ### is the default behavior). # force-username-case = none [sasl] ### This option specifies whether you want to use the Cyrus SASL ### library for authentication. Default is false. ### This section will be ignored if svnserve is not built with Cyrus ### SASL support; to check, run 'svnserve --version' and look for a line ### reading 'Cyrus SASL authentication is available.' # use-sasl = true ### These options specify the desired strength of the security layer ### that you want SASL to provide. 0 means no encryption, 1 means ### integrity-checking only, values larger than 1 are correlated ### to the effective key length for encryption (e.g. 128 means 128-bit ### encryption). The values below are the defaults. # min-encryption = 0 # max-encryption = 256

二 服务启动


D:\Program Files\DEV\Subversion  Server\bin>svnserve -d -r "D:\Program Files\DEV
\svnroot"

三 eclipse 访问svn server资源库

项目 -->右键 -->Team --> Share Project

项目被同步到资源库之中.

四 查看SVN资源库的两种方式

4.1 eclipse 中查看

window --> show view -->Other-->SVN资源库

4.2 随意的文件位置 -->右键 -->TortoiseSVN -->Repo browser

 

具体信息如下

  

五 将 SVN服务编程系统服务

详细说明 见这位大师的见解

http://oxidy.iteye.com/blog/229899

 

D:\Program Files\DEV\svn\bin>svnserve.exe -r D:\dev\WorkspaceAlgorithm_SVN_CodeS
ource\conf -d

C:\Users\Administrator.cici-THINK>sc create SvnSer binpath= "D:\Program Files\DE
V\Subversion  Server\bin\svnserve.exe --service --root F:\work_space_AITSoft\lot
te_Indonesia_rec" depend= "TCPIP" start= auto
[SC] CreateService 成功

C:\Users\Administrator.cici-THINK>net start SvnSer
SvnSer 服务正在启动 .
SvnSer 服务已经启动成功。

 

posted @ 2013-02-09 01:42  王超_cc  阅读(389)  评论(0编辑  收藏  举报