SVN服务器安装与配置
Posted syd_programming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SVN服务器安装与配置相关的知识,希望对你有一定的参考价值。
1.安装SVN服务器,直接运行这个.EXE文件即可,无须设置,一路默认下去,完成SVN服务器安装。
2.新建一个版本控制库,运行CMD程序,输入svnadmin create D:/SVNRoot(具体位置可以自己定义)。这里SVNRoot就是代码仓库。
3.安装SVN服务:sc create svnservice binpath= "C:/JAVA_DEV/Tools/svn -win32-1.5.4/bin/svnserve.exe --service -r D:/SVNRoot" displayname= "SVNService" depend= Tcpip start= auto。卸载服务:sc delete svnservice。启动服务net start svnservice。停止服务:net stop svnservice。
三.服务器端配制
1.找到D:/SVNRoot文件下的conf目录,对svnserver.conf,passwd,author进行配置
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
含义是:
未验证用户无任何权限 (如果把none修改为read就是给予读权限)
已验证用户给予写权限 (当然也能读)
密码数据存放到passwd文件中
passwd
[users]
#harry = harryssecret
#sally = sallyssecret
admin=admin111
lvzy=lvzy111
含义是:
增加了admin这个用户,密码为admin111
增加了lvzy这个用户,密码为lvzy111
Author
[groups]
# harry_and_sally = harry,sally
进行用户组的配制
比如:
Lantian=admin,lvzy
含义是将admin,lvzy加入到组Lantian中去
# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
进行文件权限的设置
比如存在libs这个文件,而我只希望admin一个人可以读写,lvzy有读权限,未授权的无法访问,则可以这样写
[/libs]
admin=rw
lvzy=r
*=none
注:*表示匿名用户
以上是关于SVN服务器安装与配置的主要内容,如果未能解决你的问题,请参考以下文章