1.redmine使用bitnami-redmine-2.4.2-0-windows-installer.exe目前最新版的。
下载:http://downloads.bitnami.com/files/stacks/redmine/2.4.2-0/bitnami-redmine-2.4.2-0-windows-installer.exe
2.安装后自动配置好了svn的服务 redmineSubversion
在命令行窗口执行:svnadmin.exe create D:\svn\repository2\
然后到该目录下手工修改三行:
anon-access = none
auth-access = write
password-db = passwd
将#password-db = passwd前的#去掉,表明我们使用一个文件来配置用户及其密码。
打开同级目录下的passwd文件,打开后在最后添加
jifeng = 123456
如果jifeng前面有空格会提示 Authentication failed
然后重启svn server,启动时,用的端口是3690:svn就可以使用了,必须加根目录。
在注册表中把redmineSubversion的命令
"D:\soft\redmine-2.4.2-0/subversion\bin\svnserve.exe" -d --listen-port=3690
修改为
"D:\soft\redmine-2.4.2-0/subversion\bin\svnserve.exe" --daemon --root d:/svn
可以在TortoiseSVN客户端,或者是eclipse的svn插件中,使用svn://localhost/repository2/来访问
注意:
1)不需要端口号,因为它是svn协议,协议本身忽略端口
2)不能使用http://ip:3690访问,因为它不是http协议
3. 在redmine的web页面上新建项目,配置svn服务器地址为:svn://localhost/repository2/xxx