CentOS5.2下搭建Subversion服务器(官网错误修正版)
看了http://wiki.centos.org/HowTos/Subversion上的tutorial. 但是完全按照这个教程来做,必须忽略中间的一个问题:
在完成第1、2步后, tutorial上说:
Go test out whether or not you can access your repository from a web browser: http://yourmachine/repos. You should get a popup box asking for a username and password. If so, type in your credentials and you should be displayed with a Revision 0:/ page.
但是事实是你得到的只能是Forbidden, don't have permission的错误:
Forbidden
You don't have permission to access /repos on this server.
Apache/2.2.3 (CentOS) Server at dev.onlyvc.cn Port 80
这里正确的步骤是:
- 在/etc/conf.d/subversion.conf里配置的SVNPath /var/www/svn/repos是根目录
- 在/var/www/svn/repos/下用svnadmin create onlyvc来创建一个库
- chown --recursive apache.apache onlyvc给予apache的权限
- service httpd restart来重启apache
- 访问http://localhost/repos/onlyvc
这样才是正确的能看到Revision 1的做法. 其他的部分都没有问题.
good luck to you