svn+apache 安装和使用 并与Nginx 整合

早过忘川 提交于 2019-12-08 13:52:53

svn简介

svn(subversion)是近年来崛起的版本管理工具,是cvs的接班人。目前,绝大多数开源软件都使用svn作为代码版本管理软件。

运行方式:

svn服务器有2种运行方式:独立服务器和借助apache。2种方式各有利弊,用户自行选择。

存储方式:

svn存储版本数据也有2种方式:BDB(一种事务安全型表类型)和FSFS(一种不需要数据库的存储系统)。因为BDB方式在服务器中断时,有可能锁住数据,所以还是FSFS方式更安全一点。

 

SVN安装

官方安装文档:http://svn.apache.org/repos/asf/subversion/trunk/INSTALL

 

准备工作:

我采用的是目前当前网站发布的版本:subversion-1.8.1

首先,需要安装预先安装四个组件,subversion才能正常工作。

系统默认已经安装apr-util及apr这两个包,只不过他们的版本较低,只支持subversion 1.4 

# rpm -qa | grep apr

apr-util-1.2.7-7.el5_3.2

apr-util-1.2.7-7.el5_3.2

apr-1.2.7-11.el5_3.1

xorg-x11-drv-dynapro-1.1.0-2

apr-1.2.7-11.el5_3.1

 

subversion要求较高的版本,为此,我们需要删除系统自带的apr,apr-util这两个包!

# rpm -e --allmatches apr-util

error: Failed dependencies:

libaprutil-1.so.0()(64bit) is needed by (installed) subversion-1.4.2-4.el5_3.1.x86_64

libaprutil-1.so.0()(64bit) is needed by (installed) httpd-2.2.3-31.el5.centos.x86_64

libaprutil-1.so.0 is needed by (installed) subversion-1.4.2-4.el5_3.1.i386

# rpm -e --allmatches apr-util --nodeps

# rpm -e --allmatches apr --nodeps

如果没有执行以上步骤,在安装完成后,会发现你执行相关的命令都会报错!

 

 

例如:

# svnserve --version

svnserve: symbol lookup error: /usr/local/svn/lib/libsvn_subr-1.so.0: undefined symbol:

 

 

 

软件下载:

    wget http://down1.chinaunix.net/distfiles/neon-0.25.5.tar.gz
    wget http://219.239.26.13/download/49189183/72260493/3/gz/168/72/1374806117800_72/subversion-1.8.1.tar.gz
    wget http://mirrors.hust.edu.cn/apache//apr/apr-1.4.8.tar.gz
    wget http://mirrors.hust.edu.cn/apache//apr/apr-util-1.5.2.tar.gz
    wget http://www.sqlite.org/sqlite-amalgamation-3071501.zip

 

 

安装:

# tar xzf apr-1.4.8.tar.gz

# cd apr-1.4.8

# ./configure --prefix=/usr/local/apr

# make && make install

# echo "/usr/local/apr/lib/" >> /etc/ld.so.conf

# ldconfig

 

# tar -zxf  apr-util-1.5.2.tar.gz

# cd apr-util-1.5.2

# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config

# make && make install

# echo "/usr/local/apr-util/lib" >> /etc/ld.so.conf

# ldconfig

 

# tar xzf neon-0.25.5.tar.gz

# cd neon-0.25.5

# ./configure --prefix=/usr/local/neon

# make && make install

# echo "/usr/local/neon/lib" >> /etc/ld.so.conf

# ldconfig

 

Pcre
   a) wget http://sourceforge.net/projects/pcre/files/pcre/8.32/pcre-8.32.tar.bz2/download
   b) tar xf pcre-8.32.tar.bz2
   c) cd pcre-8.32
   d) ./configure --prefix=/usr/local/pcre
   e) make && make install

 

 

 

#unzip sqlite-amalgamation-3071501.zip

#mv sqlite-amalgamation-3071501 subversion-1.8.1/sqlite-amalgamation

#./configure --prefix=/data/svn --with-openssl=/usr/include/openssl --without-berkeley-db  --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util

#make && make install

 

vim /etc/profile加入:

#SVN SETTING
SVN_HOME=/data/svn
PATH=$PATH:$SVN_HOME/bin:
export SUSBVERSION PATH

#APACHE SETTING
APACHE_HOME=/app/apache
PATH=$PATH:$APACHE_HOME/bin:
export APACHE PAT

 

#source /etc/profile

 

#svnserve --version
svnserve, version 1.8.1 (r1503906)
   compiled Aug  2 2013, 13:48:33 on x86_64-unknown-linux-gnu

Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository back-end (FS) modules are available:

* fs_fs : Module for working with a plain file (FSFS) repository.

Cyrus SASL authentication is available.

安装成功

 

apache 与SVN 整合

apache 安装

 

#cp  -rf apr-1.4.8 httpd-2.4.6/srclib/apr

#cp  -rf apr-util-1.5.2 httpd-2.4.6/srclib/apr-util

#cd http-2.4.6

#./configure --prefix=/app/apache --with-included-apr --with-included-apr-util  --with-apr=/usr/local/apr  --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre --enable-dav --enable-so -enable-maintainer-mode -enable-rewrite

#make && make install

vim /etc/init.d/httpd

#!/bin/bash
#
# httpd   Startup script for the Apache HTTP Server
#
# chkconfig: 235 98 98
# description: Apache is a World Wide Web server.
# It is used to serve HTML files and CGI.
# processname: httpd

# Source function library.
. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
     start)
         echo "Starting Apache Server..."
         /app/apache/bin/apachectl start
         ;;
     stop)
         echo "Stopping Apache Server..."
         /app/apache/bin/apachectl stop
         ;;
     restart)
         echo "Restarting Apache Server..."
         /app/apache/bin/apachectl restart
         ;;
     *)
         echo "Usage: $0 {start|stop|restart|status}"
         exit 1
         ;;
esac
exit 0

 

Apache 开机自启动:

chkconfig --add httpd

chkconfig --level 345 httpd  on 

svn 配置

-----------SVN+Apache------------- 

#cp -rf /data/svn/libexec/mod_* /app/apache/modules/

#vim /app/apache/conf/httpd.conf

# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so

<Location /svn>
DAV svn
SVNListParentPath on
SVNParentPath /data/svn
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /data/svn/passwd.conf
AuthzSVNAccessFile /data/svn/authz.conf
Require valid-user
</Location>


#/etc/init.d/httpd restart

创建用户

htpasswd -c /data/svn/passwd.conf user

设置权限

vim /data/svn/authz.conf

 

创建项目:

svnadmin create /data/svn/omd

 

svn+apache 与Nginx 整合 (这样做可以隐藏svn服务器的真实ip,起到一定的安全作用。 如果没有这个需求的话可以忽略 )

vim /app/nginx/conf.d/svn.test.org

server {
        listen       80;
        server_name svn.test.org;
        charset utf-8;

        location ~* {
             root /svn;
             proxy_pass http://192.168.101.66:80;
             proxy_set_header   Host                svn.test.org;
             proxy_set_header   X-Real-IP        $remote_addr;
             proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        }

        location ~ /\.ht {deny  all;}
}

 

------------单独使用SVN-------------

建立svn版本库目录

可建多个:
mkdir -p /data/svn/svndata/repos1
mkdir -p /data/svn/svndata/repos2

 

建立svn版本库

svnadmin create /data/svn/svndata/repos1
svnadmin create /data/svn/svndata/repos2

 

修改svn版本库配置文件

版本库1:
vi /data/svn/svndata/repos1/conf/svnserve.conf

内容修改为:
[general]
anon-access = none
auth-access = write
password-db = /data/svn/conf/pwd.conf
authz-db = /data/svn/conf/authz.conf
realm = repos1

版本库2:
vi /data/svn/svndata/repos2/conf/svnserve.conf

内容修改为:
[general]
anon-access = none
auth-access = write
password-db = /data/svn/conf/pwd.conf
authz-db = /data/svn/conf/authz.conf
realm = repos2

即除realm = repos2外,其他与版本库1配置文件完全相同。如果有更多的版本库,依此类推。

 

配置允许访问的svn用户

mkdir /data/svn/conf

vi /data/svn/conf/pwd.conf

为了简化配置,2个版本库共用1个用户配置文件。如有必要,也可以分开。

注意:对用户配置文件的修改立即生效,不必重启svn

文件格式如下:
[users]
<用户1> = <密码1>
<用户2> = <密码2>

其中,[users]是必须的。下面列出要访问svn的用户,每个用户一行。示例:
[users]
admin = hello
user = 123

 

配置svn用户访问权限

vi /data/svn/conf/authz.conf

为了简化配置,3个版本库共用1个权限配置文件/data/svn/conf/pwd.conf。如有必要,也可以分开。文件中定义用户组和版本库目录权限。

注意:
* 权限配置文件中出现的用户名必须已在用户配置文件中定义
* 对权限配置文件的修改立即生效,不必重启svn

用户组格式:
[groups]
<用户组名> = <用户1>,<用户2>
其中,1个用户组可以包含1个或多个用户,用户间以逗号分隔。

版本库目录格式:
[<版本库>:/项目/目录]
@<用户组名> = <权限>
<用户名> = <权限>

其中,方框号内部分可以有多种写法:
/,表示根目录及以下。根目录是svnserve启动时指定的,我们指定为/opt/svndata。这样,/就是表示对全部版本库设置权限。
repos1:/,表示对版本库1设置权限
repos2:/abc, ,表示对版本库2中的abc项目设置权限
repos2:/abc/aaa, ,表示对版本库2中的abc项目的aaa目录设置权限

权限主体可以是用户组、用户或*,用户组在前面加@,*表示全部用户。权限可以是w、r、wr和空,空表示没有任何权限。

示例:
[groups]
admin = admin
test = user
[/]
@admin=rw
*=r

[repos1:/abc/aaa]
admin = rw

[repos2:/pass]
admin =

 

svn配置完毕,删除无用文件

rm /data/svn/svndata/repos1/conf/authz
rm /data/svn/svndata/repos1/conf/passwd
rm /data/svn//svndata/repos2/conf/authz
rm /data/svn/svndata/repos2/conf/passwd

 

建立启动svn的用户

useradd  -s /sbin/nologin svn

 

允许用户svn访问版本库

chown -R svn:svn /data/svn

 

启动svn

svnserve -d --listen-port 9999 -r /data/svn/svndate"

其中:
su - svn表示以用户svn的身份启动svn
-d表示以daemon方式(后台运行)运行
–listen-port 9999表示使用9999端口,可以换成你需要的端口。但注意,使用1024以下的端口需要root权限
-r /opt/svndata指定根目录是/opt/svndata

检查:
ps -ef|grep svnserve

如果显示如下,即为启动成功:
svn    6941   1 0 15:07 ?    00:00:00 svnserve -d –listen-port 9999 -r /data/svn/svndata

 

建立svn启动脚本

vim /etc/init.d/svn

#!/bin/bash
# build this file in /etc/rc.d/init.d/svn
# chmod 755 /etc/rc.d/init.d/svn
# chkconfig: - 85 15
# description: svn server

SVN_HOME=/data/svn/svndata

if [ ! -f "/data/svn/install/bin/svnserve" ]

then

   echo "svnserver startup: cannot start"

   exit

fi

case "$1" in


     start)

        echo "Starting svnserve..."

        svnserve -d --listen-port 9999 -r $SVN_HOME

        echo "Finished!"

        ;;

    stop)

        echo "Stoping svnserve..."

         killall svnserve

        echo "Finished!"

        ;;

    restart)

         $0 stop

         $0 start

        ;;

    *)


        echo "Usage: svn { start | stop | restart } "

        exit 1
esac

 

chmod 755 /etc/init.d/svn

 

设置svn 开机自启动

chkconfig svn on

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!