subversion linux 服务器端搭建 源码安装

  1. 下载源码包

    1.1 subversion 源码包 http://subversion.apache.org/download/

    1.2下载sqlite-amalgamation

此处用的版本 subversion-1.8.9.tar.gz

sqlite-amalgamation-201408010140.zip

2.请参照 http://my.oschina.net/u/234018/blog/297849 安装apr apr-util apache

3. 解压 安装

 tar -zxvf subversion-1.8.9.tar.gz
 wget http://www.sqlite.org/sqlite-amalgamation-3071501.zip
 unzip sqlite-amalgamation-3071501.zip
 
 mkdir /home/devtac/soft/subversion-1.8.9/sqlite-amalgamation
 cp ./sqlite-amalgamation-3071501/* /home/devtac/soft/subversion-1.8.9/sqlite-amalgamation
 
 ./configure --prefix=/usr/local/subversion --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-apxs=/usr/local/apache/bin/apxs --with-openssl   --enable-maintainer-mode
 
 make
 make install

4.检测是否安装成功

[[email protected] data]# cd /usr/local/subversion/bin/
[[email protected] bin]# pwd
/usr/local/subversion/bin
[[email protected] bin]# ll
总用量 6780
-rwxr-xr-x 1 root root 4580966 8月   5 13:55 svn
-rwxr-xr-x 1 root root  211775 8月   5 13:55 svnadmin
-rwxr-xr-x 1 root root  163522 8月   5 13:55 svndumpfilter
-rwxr-xr-x 1 root root  222480 8月   5 13:55 svnlook
-rwxr-xr-x 1 root root  162722 8月   5 13:55 svnmucc
-rwxr-xr-x 1 root root  495959 8月   5 13:55 svnrdump
-rwxr-xr-x 1 root root  683761 8月   5 13:55 svnserve
-rwxr-xr-x 1 root root  289204 8月   5 13:55 svnsync
-rwxr-xr-x 1 root root  115601 8月   5 13:55 svnversion
[[email protected] bin]# svnserve --version
svnserve,版本 1.6.11 (r934486)
   编译于 Apr 12 2012,11:09:11

版权所有 (C) 2000-2009 CollabNet。
Subversion 是开放源代码软件,请参阅 http://subversion.tigris.org/ 站点。
此产品包含由 CollabNet(http://www.Collab.Net/) 开发的软件。

下列版本库后端(FS) 模块可用: 

* fs_base : 模块只能操作BDB版本库。
* fs_fs : 模块与文本文件(FSFS)版本库一起工作。

Cyrus SASL 认证可用。

5 subversion 配置环境变量(可以不用到subversion 的bin目录下执行subversion 命令了 )

cp /etc/profile /etc/profile.bak.20140805
vi /etc/profile

文件最后加入
SVNPATH=$PATH:/usr/local/subversion/bin
export SVNPATH

6.创建仓库

svnadmin 只能创建一级目录,如果直接执行

mkdir -p /home/devtac/svn/case

在后面用客户端checkout 的时候有时会报错

报错 : 期望文件系统格式在"1"到"4"之间;发现格式"6"

正解:

cd /home/devtac
mkdir svn
svnadmin create /home/devtac/svn/case

创建好后,有如下目录

[[email protected] bin]# cd /home/devtac/svn/case/
[[email protected] case]# ll
总用量 24
drwxr-xr-x 2 root root 4096 8月   5 16:41 conf
drwxr-sr-x 6 root root 4096 8月   5 16:45 db
-r--r--r-- 1 root root    2 8月   5 16:36 format
drwxr-xr-x 2 root root 4096 8月   5 16:36 hooks
drwxr-xr-x 2 root root 4096 8月   5 16:36 locks
-rw-r--r-- 1 root root  229 8月   5 16:36 README.txt

7 修改配置文件

主要修改 /home/devtac/svn/case/conf

[email protected] conf]# pwd
/home/devtac/svn/case/conf
[[email protected] conf]# ls
authz  passwd  svnserve.conf  svnserve.conf.bak
[[email protected] conf]# ls -al
总用量 24
drwxr-xr-x 2 root root 4096 8月   5 16:41 .
drwxr-xr-x 6 root root 4096 8月   5 16:36 ..
-rw-r--r-- 1 root root 1144 8月   5 16:37 authz
-rw-r--r-- 1 root root  350 8月   5 16:38 passwd
-rw-r--r-- 1 root root 3995 8月   5 16:41 svnserve.conf
-rw-r--r-- 1 root root 2279 8月   5 16:37 svnserve.conf.bak

主要修改

svnserve.conf

anon-access = none (匿名用户不能访问)

auth-access = write   (认证用户 可读可写)

password-db = passwd(用户密码文件)

authz-db = authz

详细解释请读配置文件svnserve.conf里注释

注意:

### users have read and write access to the repository.
anon-access = none 
auth-access = write

auon-access 前面不能有空格,auth-access 也不能有,svnserve.conf 每行修改的行首都不要有空格

否则 后面客户端checkout 又会报错。

passwd 配置账号密码

[[email protected] conf]# more 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]
# harry = harryssecret
# sally = sallyssecret
admin = admin
tac = lovelife
test = test

authz 配置权限 如下

[[email protected] conf]# more 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]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
user = admin,tac,test
# [/foo/bar]
# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]
user = rw
admin = rw
tac = rw
test = r

配置文件暂时修改完毕

8. 导入代码库 到仓库

 1423  mkdir -p /tmp/data/
 1424  echo ‘1111‘ >/tmp/data/index.html
 1425  echo ‘2222‘ >/tmp/data/2.html
 1426  ./svn import /tmp/data/ file:///home/devtac/svn/case -m "testttttttest"

9.安装客户端

TortoiseSVN-1.8.7.25475-x64-svn-1.8.9.msi

10. checkout

10.1 先 在server 端把svn 默认端口加到iptables 里

重启iptable

10.2 启动 svn

svnserve -d -r /home/devtac/svn/case

10.2 客户端 checkout

我这边url 里写的是:

svn://192.168.2.241

完工

谢谢网络诸君

subversion linux 服务器端搭建 源码安装

时间: 2024-10-12 11:08:53

subversion linux 服务器端搭建 源码安装的相关文章

在 Linux 系统上源码安装 GTK+ 2.0

在 Linux 系统上源码安装 GTK+ 2.0==================================================Keywords: GTK+, Install, Linux, SourceAuthor:       whyglinux (whyglinux AT hotmail DOT com)Date:          2007-01-07==================================================目录0. 前言1.

linux系统下源码安装PHP5.6

linux系统下源码安装PHP5.6 从php5.4开始,需要自己下载安装libXpm-dev了,但是由于包的依赖性原因,我就选择了yum方式来进行安装,通过网络yum源直接下载并进行安装了 下载php以及相关的库文件(百度网盘:http::/pan.baidu.com/s/1bnL31c7) gd库以及php功能特性扩展库文件 libgd-2.1.1.tar.gz        gd库文件(使php支持以下功能)     jpegsrc.v7.tar.gz         jpeg库文件(使p

Linux平台下源码安装mysql多实例数据库

Linux平台下源码安装mysql多实例数据库[[email protected] ~]# netstat -tlunp | grep 330tcp6 0 0 :::3306 :::* LISTEN 6191/mysqld [[email protected] ~]# ss -tlunp | grep 330tcp LISTEN 0 80 :::3306 :::* users:(("mysqld",pid=6191,fd=10)) [[email protected] ~]# syst

Linux 下MySQL源码安装完整版

在Linux中安装MySQL,通常为RPM与源码方式安装.对于生产环境而言,由于需要自定义诸如安装路径.数据文件位置.字符集以及支持的存储引擎等多以源码方式来进行安装.之前有写过一篇关于源码安装的文章,Linux下基于源码方式安装MySQL 5.6,但不是很完整,因此该文可以作为其补充.以下为具体安装步骤,供大家参考. 1.安装前的有关描述必备的包和工具  gcc/g++ :MySQL 5.6开始,需要使用g++进行编译.  cmake  :MySQL 5.5开始,使用cmake进行工程管理,c

Linux下从源码安装python,将python安装到任意路径下(非site-packages)

以centos7为例: 源码安装python,一般先安装一些devel的包: yum -y install xz wget gcc make gdbm-devel openssl-devel sqlite-devel zlib-devel bzip2-devel 然后下载源码 解压源码: tar -Jxf Python.x.tar.xz cd Pyhton.x ./configure 这里有一些选项,--bindir: 安装完成后which python所在的路径 --prefix是指安装pyt

Linux环境下源码安装PostgreSQL

1.下载PostgreSQL源码包,并保存到Linux操作系统的一个目录下 2.解压PostgreSQL源码包 :tar zxvf postgresql-9.2.4.tar.gz 或 tar jxvf postgresql-9.2.4.tar.bz2 3,切换到刚刚解压的目录下:cd postgresql-9.2.4 4. ./configure 如果遇到错误,则需要如下安装依赖工具包(按需安装) yum install gcc yum install readline yum install

Linux MySQL5.5源码安装

环境:CentOS7,MySQL5.5 1.MySQL5.5源码下载 Oracle的网站打开较慢,http://mirrors.sohu.com/mysql/这里提供了MySQL的镜像.一般的,Linux的程序安装有两种方式:A利用RPM,YUM等工具 B手动安装.其中手动安装又有两种方式,一种是直接下载已经编译好的二进制文件,另一种是下载源码手动编译.我们这里尝试下载源码手动编译的方式. 如何区分下载文件列表的文件是已编译好的二进制文件,还是源码文件: A.文件大小.由于从源码编译为二进制文件

linux下编译源码安装软件

Reference:http://itlab.idcquan.com/linux/set/39862.html 基本上就是三步: 以编译安装codeblocks为例: 首先解压源码包,假设解压到/tmp下 1. 终端运行./configure 之后系统会自动检查编译环境,如果缺少部件会提示并且STOP.按照提示安装缺少的包就好了. 例如 No package 'gtk+-2.0' found,提示缺少gtk2.0(可是我已经安装gtk2.8了啊喂) 没办法,只好apt-get install l

Linux下Apache源码安装经验

1. 从Apache官网下载自己所需要的版本.(这里以2.4版本为例)http://httpd.apache.org/download.cgi#apache24 (参考网址http://www.jb51.net/article/59474.htm 和 http://blog.csdn.net/yiluoak_47/article/details/22067185 ) 2. 把下载的源码包拷贝(用的WinSCP软件拷贝文件)到Liunx服务器上,进入到这个目录,然后解压 tar –zxvf htt