Chinaunix首页 | 论坛 | 博客
  • 博客访问: 292154
  • 博文数量: 109
  • 博客积分: 5814
  • 博客等级: 大校
  • 技术积分: 1440
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-26 10:17
文章分类

全部博文(109)

文章存档

2010年(9)

2009年(36)

2008年(64)

我的朋友

分类: 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

四、安装 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的文件离添加

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

 

阅读(754) | 评论(0) | 转发(0) |
0

上一篇:freebsd ports

下一篇:freebsd mysql

给主人留下些什么吧!~~