Windows下架设subversion服务器
Windows下架设subversion服务器的步骤:
step1)下载和安装服务器
下载并安装svn-1.4.0-setup.exe,假设你安装到D:\Subversion
step2)建立Repository
打开命令窗口, 键入 svnadmin create D:\svnprojects\kingcodec
你也可以使用TortoiseSVN 直接通过右键完成此步骤。
step3)配置Repository
进入Repository目录,在本文中是D:\svnprojects\kingcodec,你会看到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
user=user
step4)启动subversion服务器
打开命令窗口键入svnserve -d -r D:\svnprojects\,默认端口是3690,如果不幸这个端口被别的程序暂用,可以通过选项 --listen-port=绑定端口。
如果觉得使用命令不方便(特别是那个没办法隐藏的cmd窗口),你可以把svn设置成windows系统服务,记得网上有个svnservice.rar 可以实现此功能。
【使用方法】下载那个svnservice.exe文件,拷贝到E:\svn\bin目录下,再从命令行下执行:
svnservice -install --daemon --root "E:\svn\Repository"
sc config svnservice start= auto
net start svnservice
step5)访问
url格式为svn://ip地址//Repository名,在本文中是svn://127.0.0.1/kingcodec
这个时候你可以进行import 或者checkout等操作了,建议使用TortoiseSVN 客户端。
另外,你也使用apache和subversion建立http://的访问方式,本文使用了subversion自带的svn服务器。
注:文中提到的软件可以自行搜索下载,如果找不到可以联系我。文章参考:csdn。
没有评论:
发表评论