freebsd7.0 svn trac

2009-05-13 14:52:18来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折


本文参考了小乔的文章还有我以前安装的文档 同时还有广大网友在网上留下的解决故障
项目名称: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
四、安装 Trac
cd /usr/ports/www/trac
make install clean;rehash
cd /usr/ports/www/trac-webadmin/;make install clean;rehash
cd /usr/ports/www/trac-accountmanager;make install clean;rehash

需要更新py-gen  用portupgrade 更新py-gen  更新后重新安装trac


Permission denied: '/root/.python-eggs'
在trac.conf的文件离添加
SetEnv
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

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:pfctl备忘

下一篇:一网络工程师的思考