SVN Sever install on freebsd

2009-05-13 15:12:47来源:未知 阅读 ()

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


                                svn server
1. install apache with db42
make WITH_AUTH_MODULES=yes WITH_BERKELEYDB=db42 install clean
del the ipv6  add the cgid and suexec
2. install python
cd /usr/ports/www/mod_python3
make install clean;rehash
3. install subversion
cd /usr/ports/devel/subversion
make WITH_SVNSERVE_WRAPPER=yes WITH_MOD_DAV_SVN=yes WITH_APACHE2_APR=yes install clean ;rehash
4. 初始目录设置:
# 设定 SVN 基本环境目录
mkdir -p /export1/svnroot                        # 路径自行决定后再更改即可
svnadmin create --fs-type bdb /export1/svnroot   # svn 初始化
chown -R www:www /export1
5. 建立帐号和权限:
htpasswd -cm /etc/svn-auth-file admin            # 建立SVN帐号
htpasswd -m  /etc/svn-auth-file kevin            # 第二个以后的帐号记得不要 -c
htpasswd -D /etc/svn-auth-file username          # 删除用户
# ee /etc/svn-access-file:                          # 建立 SVN 权限控制文件
[/]
* = r
[svnroot:/]
admin = rw
kevin = rw
6. configure with apache
#/usr/local/etc/apache22/Includes/svn.conf # 设定SVN@Apache
                                       
    DAV svn                                          
    SVNParentPath /export1                           
    SVNListParentPath on                              
    SVNAutoversioning on                              
    ModMimeUsePathInfo on                             
    Satisfy Any                                       
    AuthType Basic
    AuthName "Kevin Subversion Repository"
    AuthzSVNAccessFile /etc/svn-access-file
    AuthUserFile /etc/svn-auth-file
    Require valid-user

标签:

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

上一篇:FreeBSD模块开发最简单示例

下一篇:【原创】谈谈个人对Juniper(Junos)模拟器的理解