分类: BSD
2008-09-02 15:55:43
本文参考了小乔的文章还有我以前安装的文档 同时还有广大网友在网上留下的解决故障
项目名称:vicent
项目目录:/home/www/svn/repository/vicent
管理用户:admin(读写)
测试用户:guest(只读)
一、安装 Apache:
cd /usr/ports/www/apache22
make WITH_BERKELEYDB=db42 install clean;rehash
# SVN 会使用到 bdb4, 所以 apache 在此要一起装起来
# /etc/rc.conf加入apache22_enable=YES
二、安装mod_python
cd /usr/ports/www/mod_python3
make install clean;rehash
三、安装 Subversion
cd /usr/ports/devel/subversion
make WITH_SVNSERVE_WRAPPER=yes WITH_MOD_DAV_SVN=yes WITH_APACHE2_APR=yes install clean ;rehash
# 让 svn 支持 apache22 的 DAV_MODULES
Permission denied: '/root/.python-eggs'
在trac.conf的文件离添加
PYTHON_EGG_CACHE /tmp
inside the
五、初始目录设置:
# 设定 SVN 基本环境目录
mkdir -p /home/www/svn/repository/vicent # 路径自行决定后再更改即可
svnadmin create --fs-type bdb /home/www/svn/repository/vicent # svn 初始化
chown -R www:www /home/www/svn/repository# 设定 Trac 基本环境目录
mkdir -p /home/www/trac/vicent/
trac-admin /home/www/trac/vicent initenv
chown -R www:www /home/www/trac六、建立帐号和权限:
htpasswd -cm /etc/svn-auth-file admin # 建立SVN帐号
htpasswd -m /etc/svn-auth-file test # 第二个以后的帐号记得不要 -c
htpasswd -D /etc/svn-auth-file username # 删除用户#/etc/svn-access-file: # 建立 SVN 权限控制文件
[/]
* = r
[test]
admin = rw
test = r设置文件
#/usr/local/etc/apache22/Includes/svn.conf # 设定SVN@Apache
DAV svn
# SVNPath /home/www/svn/repository/test
SVNListParentPath On
SVNParentPath /home/www/svn/repository
AuthType Basic
AuthName "Feloo Subversion Repository"
AuthUserFile /etc/svn-auth-file
Require valid-user
# AuthzSVNAccessFile /etc/svn-access-file 这一行注释掉 提示没有权限访问#/usr/local/etc/apache22/Includes/trac.conf # 设定Trac@Apache
LoadModule python_module libexec/apache22/mod_python.so
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /home/www/trac/test
PythonOption TracUriRoot /trac
AuthType Basic
AuthName "Feloo Trac Projects"
AuthUserFile /etc/svn-auth-file
Require valid-user
七、测试:
1. Trac
trac-admin /home/www/trac/test permission add admin TRAC_ADMIN
tracd --port 8000 /home/www/trac/vicent
登陆在admin plugins 添加
联系方式 qq 110129307