Linux SVNserver建立

1. Ubuntu PC一个。最好是最新的Ubuntu稳定的版本号

2. 运行以下命令来安装subversion:

sudo apt-get update
sudo apt-get install subversion

3. 如果代码svn仓库的根路径定为 /home/svnroot,运行下面命令新建文件夹:

sudo mkdir /home/svnroot

4. 新建一个代码仓库。如果仓库名为:example

cd /home/svnroot
sudo svnadmin create example

此命令运行完毕后会在 /home/svnroot 下多出来一个名为example的文件夹。这就是example代码仓库了。

5. 编辑example仓库的訪问权限

即:改动 /home/svnroot/example/conf下的三个文件:authz passwd svnserve.conf

当中:

passwd 中保存了username和password

authz 中保存了用户组定义及各文件夹的訪问权限定义

svnserve.conf 中保存了本代码仓库使用的配置(是否同意匿名用户?指定username和password数据库...)

这里给出一个典型的配置:

passwd实例:

[users]
xiaoming = 1111
xiaowang = 2222
xiaoli = 3333
laowang = 4444
shuangshuang = 5555
dashi = 6666

authz实例(admin能够读写全部文件夹,dev能读写branch。dev仅仅读trunk/tag):

[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average
[groups]
admin = xiaoli
dev = laowang,shuangshuang,dashi,xiaowang,xiaoming
[/]
@admin = rw
@dev = r
[/trunk]
@admin = rw
@dev = r
[/tag]
@admin = rw
@dev = r
[/branch]
@admin = rw
@dev = rw

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
[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

6. 加入svn服务为系统自启动项目

- 创建svnd.sh 。内容例如以下

#!/bin/bash
svnserve -d -r /home/svnroot

将这个文件放在 /etc/init.d/svnd.sh

这个脚本的功能:启动svn服务,仅仅有在启动服务后,外部的机器才干通过各种svn工具来訪问svnserver。

- 加入可运行权限

sudo chmod a+x /etc/init.d/svnd.sh

- 编辑 rc.local

vim /etc/rc.local

在exit 0之前。加上
/etc/init.d/svnd.sh

- 重新启动server,然后运行命令:

ps -e | grep svnserve

从命令结果来检查svn服务是否已经自己主动的随系统启动。

版权声明:本文博主原创文章。博客,未经同意不得转载。

时间: 2024-10-17 17:16:01

Linux SVNserver建立的相关文章

linux学习 建立静态库,动态库,写简单的makefile

建立静态库 建立四个文件 bin(可执行文件),lib(库),include(头文件),src(放源文件) 这里的起的库明为add 在src文件中执行 1)gcc -c add.c //编译add.c源文件生成add.o目标文件 2)ar crsv ../lib/ libadd.a add.o //对目标文件*.o进行归档,生成lib*.a, 把这个生成文件放在lib里 3)gcc -o main main.c -L(大些的爱偶,放库的路径)../lib   –l(小写的爱偶,库名为add) a

Linux下建立Nexus私服

Linux下建立Nexus私服 要安装3个东西,然后配置私服: 1.JDK 2.Maven 3.Nexus 然后配置 1.JDK的安装 下载JDK安装包,格式为RPM格式,安装即可 安装程序 #rpm -ivh jdk-1_5_0_02-linux-i586.rpm 出现安装协议等,按接受即可. Linux安装JDK步骤2.设置环境变量. #vi /etc/profile 在最后面加入 #set java environment JAVA_HOME=/usr/java/jdk-1_5_0_02

ORACLE 11g在linux上建立第二个实例

linux服务器主机不够,而测试人员需要新的一台oracle环境做测试,,所以准备在已经有的oracle的linux主机上上面建立第二个实例.这台oracle服务器的资源足够用,所以就直接在上面搭建多实例来满足测试人员的需求. 1,使用vnc 远程工具进去,dbca报错如下: [[email protected] ~]$ dbca No protocol specified [[email protected] ~]$ exit 2,需要设置display窗口: [[email protecte

Linux 下建立 Git 与 GitHub 的连接

Git 是一款开源的分布式版本控制系统,而 GitHub 是依托 Git 的代码托管平台. GitHub 利用 Git 极其强大的克隆和分支功能,使得社区成员能够自由地参与到开源项目中去. 不过,在开始学习之前,你需要一个 GitHub 账号,以及一台能联网的 Linux 虚拟机. =================准备工作================== 一.安装 Git * 如果你已经安装好了 Git,可以忽略这一步 Ubuntu 安装 Git:  apt-get install git

Linux下建立软链接

实例:ln -s /home/gamestat    /gamestat Linux下的软链接类似于windows下的快捷方式 ln -s a b 中的 a 就是源文件,b是链接文件名,其作用是当进入b目录,实际上是链接进入了a目录 如上面的示例,当我们执行命令   cd /gamestat/的时候  实际上是进入了 /home/gamestat/ 值得注意的是执行命令的时候,应该是a目录已经建立,目录b没有建立.我最开始操作的是也把b目录给建立了,结果就不对了. 删除软链接: rm -rf  

linux系统建立DNS主从域名服务器实现正向反向查询

实验要求:建立DNS主从域名服务器实现正向反向查询 实验步骤: 1.正向查询 首先挂载并且安装bind软件 查看工作目录 进入主配置文件并且修改配置文件的监听端口的ip地址指向自己,允许查询的网段为任何人 区域文件 进入并配置区域设置文件 在进入named 查看,并且将区域配置的数据文件named.localhost文件的内容拷贝到benet.com.zone当中并重新编辑 建立正向查询 指定本机地址为DNS服务器地址写入etc/resolv.conf文件,写入完之后查看下 关闭防火墙,并且开启

linux软链接建立与删除

创建软链接即用 ln -s 原始文件或文件夹 目标文件或文件夹说明:因为空间有限,不改变原来程序文件,再继续读取/data/ftp目录内容,只需要在/data2/上面建立软连接. 例:#建立软链接mv /data/ftp /data2/ln -s /data2/ftp  /data/ftp#删除软连接#当删除链接文件时,如果不小心会把原始文件删掉rm   /data/ftp #只是少了一个" / " 删除的 就是链接文件, 也就是在文件的最后不要加上"/"结论:在删

linux下建立回收站防止误删除及定期清空

功能描述: 我们都知道linux不同于windows的一点是Windows有回收站机制,这样如果我们想将之前删掉的一个文件还原直接到回收站里就可以实现,这给了我们一次反悔的机会.所以我考虑在我的linux上也加入这个功能,来防止"rm -rf"造成的误删除导致数据丢失. 我现在通过脚本来实现这个回收站机制.rm脚本实现的是删除,替换了原系统中的rm,将删除的文件都回收到了用户家目录下的一个叫./recycle的目录里了,到时只要在这个目录里找回就可以啦,注意rm删除的东西都被真的删除,

C#通过SharpSSH库与Linux服务器建立SSH连接并执行命令

在Unity3D项目开发工具时需要用到SSH连接远程Linux服务器执行命令,找到SharpSSH链接库后,通过此方法就可使用.   /// <summary>     /// SSH登录远程Linux服务器,并运行指令     /// </summary>     /// <param name="host">远程Linux服务器IP或域名</param>     /// <param name="username&qu