`
bruce.yuan
  • 浏览: 5255 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Linux下安装SVN服务端

阅读更多
1、登录官网现在介质
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260&expandFolder=74
下载下面两个安装介质
subversion-${version}.tar.gz
subversion-deps-${version}.tar.gz
注:绿色部分为版本号,需要两个一致

2、下载、安装依赖
openssl
wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz
cp openssl-1.0.0a.tar.gz /usr/local
cd openssl-1.0.0a
./config
./config -t
make depend
make
make test
make install


vi /etc/profile
PATH=/usr/local/ssl/bin:$PATH
export PATH
source /etc/profile


zlib
wget http://zlib.net/zlib-1.2.5.tar.gz
cp zlib-1.2.5.tar.gz /usr/local
cd zlib-1.2.5
./configure
make
make install
ln -s zlib-1.2.5 zlib


3、安装subversion
cp subversion-${version}.tar.gz /usr/local
cp subversion-deps-${version}.tar.gz /usr/local
cd /usr/local
tar -xvf subversion-${version}.tar.gz
tar -xvf subversion-deps-${version}.tar.gz
cd subversion-${version}
./configure --with-openssl=/usr/local/ssl --with-zlib=/usr/local/zlib --with-ssl --with-libs=/usr/local/ssl
make && make install


#检查安装是否成功
svn --version


4、配置SVN
#创建版本库
svnadmin create /usr/svn/repos
cd /usr/svn/repos/conf


cat svnserve.conf
[root@localhost conf]# cat svnserve.conf 
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
anon-access = none
auth-access = write
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control.  Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing this file.  If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
# realm = My First Repository
# realm = test

[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version' and look for a line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0 means no encryption, 1 means
### integrity-checking only, values larger than 1 are correlated
### to the effective key length for encryption (e.g. 128 means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256
[root@localhost conf]# 





cat passwd
### This file is an example password file for svnserve.
### Its format is similar to that of svnserve.conf. As shown in the
### example below it contains one section labelled [users].
### The name and password for each user follow, one account per line.

[users]
yuanjun = yuanjun
# harry = harryssecret
# sally = sallyssecret




cat authz
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to:
###  - a single user,
###  - a group of users defined in a special [groups] section,
###  - an alias defined in a special [aliases] section,
###  - all authenticated users, using the '$authenticated' token,
###  - only anonymous users, using the '$anonymous' token,
###  - anyone, using the '*' wildcard.
###
### A match can be inverted by prefixing the rule with '~'. Rules can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').

[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average

[groups]
g1 = yuanjun
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe

# [/foo/bar]
# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r

[/]
@g1 = rw




5、启动SVN服务端
svnserve -d -r /usr/svn/ --config-file=/usr/svn/repos/conf/svnserve.conf



6、测试下
svn list svn://192.168.56.4/repos



7、启停服务脚本
vi run.sh
#!/bin/bash

if [ ! $# -eq 1 ];then
echo "Using run.sh start[stop|restart]"
exit 0
fi

start(){
svnserve -d -r /usr/svn/ --config-file=/usr/svn/repos/conf/svnserve.conf
}

stop(){
sn=`ps -ef|grep svn|grep -v grep|awk '{print $2}'`
if [ -n "$sn" ];then
kill -9 $sn
fi
}

case $1 in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "$1 is unsupport param!"
exit 0
;;
esac


参考
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260&expandFolder=74
http://blog.sina.com.cn/s/blog_70291fc101012guq.html
http://liulijun-cn-2011.iteye.com/blog/2031654
http://blog.csdn.net/cdl2008sky/article/details/6431529
http://blog.sina.com.cn/s/blog_5542414f0100vw1l.html
http://92xzz.diandian.com/post/2012-08-03/40037388390
分享到:
评论

相关推荐

    SVN服务端安装版

    本指南将详细介绍如何安装和配置SVN服务端,以及如何利用其特性进行项目管理。 首先,让我们了解一下SVN的基本概念。Subversion的核心功能是跟踪文件和目录的变更历史,允许多个用户协同编辑同一份代码库,同时避免...

    Linux下安装SVN服务端的方法步骤

    我们在/home下建立一个名为svn的仓库(repository),以后所有代码都放在这个下面,创建成功后在svn下面多了几个文件夹。 [root@localhost /]# cd /home [root@localhost home]# mkdir svn [root@localhost home]# ...

    SVN服务端安装软件

    本教程将详细讲解如何安装最新的SVN服务端,以及如何集成中文包。 首先,我们需要了解SVN服务端的核心组件——Apache Subversion Server,通常简称为Apache SVN或VisualSVN Server。它是SVN服务器的实现,支持...

    svn服务端linux及客户端win.rar

    在本资源“svn服务端linux及客户端win.rar”中,包含的是在Linux系统上搭建SVN服务端以及在Windows系统上安装和使用SVN客户端的相关资料。 一、Linux系统上的SVN服务端搭建 1. 安装SVN:在Linux环境下,通常使用包...

    ubuntu_linux_svn服务端客户端配置

    本主题将详细讲解如何在Ubuntu Linux系统上配置SVN服务端和客户端,以及与之相关的标签“rabbit”可能涉及的RabbitMQ消息队列。 首先,让我们深入了解Ubuntu Linux上的SVN服务端配置: 1. **安装SVN服务器**:在...

    windows系统下SVN服务端安装包

    标签中提到了“SVN”和“Linux”,这可能意味着虽然我们讨论的是Windows环境下的SVN服务端,但Subversion本身是跨平台的,因此不仅限于Windows,也可以在Linux等其他操作系统上运行。Linux上的SVN服务端通常会使用...

    【SVN】服务端和客户端安装包

    - SVN服务端安装:首先,下载对应平台的服务端安装包,例如对于Windows,可以选择VisualSVN Server。按照安装向导步骤进行,设置好仓库路径、端口号和认证方式(如基本认证或Windows域认证)。安装完成后,通过管理...

    SVN 服务端和客户端下载

    4. **安装与配置**:安装SVN服务端通常涉及设置版本库路径、配置网络访问权限、设置用户认证等步骤。客户端安装相对简单,一般只需按照安装向导进行即可。 5. **代码管理**:使用SVN,你可以进行版本控制的基本操作...

    SVN服务端 TortoiseSVN 客户端安装说明

    ### SVN服务端与TortoiseSVN客户端安装详解 #### SVN 1.6.16 Linux服务端安装 **一、下载安装包** 为了确保SVN服务端的正常运行,首先需要从官方网站下载对应的安装包。对于SVN 1.6.16版本,需要下载以下两个文件...

    Linux下搭建SVN服务器

    在Red Hat系列的Linux发行版中,可以通过包管理器`yum`来安装SVN服务端。 ``` # yum -y install subversion ``` 此命令会自动安装`subversion`及其依赖包,安装完成后可以通过以下命令验证安装情况: ``` # /usr/...

    svn服务端安装方法

    本文将详细介绍如何在服务器上安装和配置SVN服务端,以及涉及的相关配置文件。 首先,让我们了解 SVN 服务端的安装过程: 1. **选择操作系统**:SVN可以在多种操作系统上运行,包括Windows、Linux和macOS。这里...

    svn-linux环境搭建服务端-windows环境下客户端使用

    资源名称:svn-linux环境搭建服务端-windows环境下客户端使用   资源截图: 资源太大,传百度网盘了,链接在附件中,有需要的同学自取。

    SVN linux服务器端安装文件1

    在Linux环境下,SVN服务器的搭建是开发团队协作的重要环节。以下将详细介绍如何在Linux服务器上安装和配置SVN,以及"deps"可能包含的内容。 一、SVN安装 1. 更新系统库:首先确保系统是最新的,执行`sudo apt-get ...

    linux下安装svn详细文档

    Linux 下安装 SVN 的过程涉及到多个步骤,主要包括安装 SVN 软件、创建 SVN 版本库、配置权限、启动 SVN 服务以及测试 SVN 服务。以下是详细的解释: 1. **安装 SVN**: 使用 `sudo apt-get install subversion` ...

    SVN服务端工具压缩包

    2. **SVN服务端工具安装与配置** - 安装:根据操作系统选择合适的安装包,如Windows上的VisualSVN Server或Linux上的CollabNet Subversion Server。 - 配置:设置版本库路径、用户权限、SSL加密等,确保安全访问。...

    centos离线搭建svn服务器(含教程,源码包)

    把手一步步离线搭建svn服务器,centos离线搭建svn服务器,linux离线搭建svn服务器。

    LINUX离线安装SVN1.8.17全过程,自己摸索出来的经验

    本文将详细介绍如何在离线环境下安装SVN 1.8.17,这是根据个人实践总结的经验。由于文档编写者自认文字功底不深,以下内容将尽可能详细地解释每个步骤,以帮助读者理解整个过程。 首先,离线安装SVN的前提是你已经...

    linux下svn环境搭建

    1. **安装 SVN 服务端**: - 首先确保你的 Linux 系统已更新到最新状态。 - 使用包管理器安装 SVN 服务器。例如,在基于 Debian 的发行版中,可以通过以下命令安装 SVN: ```bash sudo apt-get update sudo ...

Global site tag (gtag.js) - Google Analytics