【svn】Centos搭建svn服务器环境

1.需求描述

在Centos系统中搭建svn服务器环境

2.搭建过程

2.1 yum安装svn

[[email protected] /]# yum install svn

2.2 新建目录存储svn目录

[[email protected] /]# mkdir /usr/svn

2.3 新建测试仓库pro

[[email protected] /]# svnadmin create /usr/svn/pro

进入到目录/usr/svn/pro展开目录

说明:

hooks目录:放置hook脚步文件的目录

locks目录:用来放置subversion的db锁文件和db_logs锁文件的目录,用来追踪存取文件库的客户端

format目录:是一个文本文件,里边只放了一个整数,表示当前文件库配置的版本号

conf目录:是这个仓库配置文件(仓库用户访问账户,权限)

2.4 进入到文件夹conf,配置相关信息

展开文件夹conf,有以下文件

对上述三个文件配置内容如下:(粉红色标记部分为修改)

vi 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 =admin1

qinys = 123456

vi 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

# [/foo/bar]

# harry = rw

# &joe = r

# * =

# [repository:/baz/fuz]

# @harry_and_sally = rw

# * = r

admin = admin1

user = qinys

[/]

@admin = rw

@user = rw

*=

以下是说明:

admin = admin1   创建admin组,组成员为:admin1

user = qinys         创建用户组,用户成员:qinys

[/]                       赋予根权限,为了便于管理和权限的控制,可以把权限细化到版本库中相应的目录

@admin = rw       admin组有读写的权限

@user = r            user组只有读的权限

*=                       表示除了上面设置的权限用户组以外,其他所有用户都设置空权限,空权限表示禁止访问本目录,这很重要一定要加上。

vi svnserve.conf



### The anon-access and auth-access options control access to the

### repository for unauthenticated (a.k.a. anonymous) users and

### authenticated users, respectively.

### Valid values are "write", "read", and "none".

### Setting the value to "none" prohibits both reading and writing;

### "read" allows read-only access, and "write" allows complete

### read/write access to the repository.

### The sample settings below are the defaults and specify that anonymous

### users have read-only access to the repository, while authenticated

### users have read and write access to the repository.

anon-access = none #注意前边不要有空格,要顶齐 .匿名访问权限,可以是read,write,none,默认是read

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 #认证命名空间,会在认证提示中显示

### The force-username-case option causes svnserve to case-normalize

### usernames before comparing them against the authorization rules in the

### authz-db file configured above.  Valid values are "upper" (to upper-

### case the usernames), "lower" (to lowercase the usernames), and

### "none" (to compare usernames as-is without case conversion, which

### is the default behavior).

# force-username-case = none

[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

2.5 启动svn

[[email protected] /]# svnserve -d -r /usr/svn/

2.6查看启动情况

ps -ef | grep svn

停止svn,使用命令:kill –9 20181 即可20181为进程ID

2.7 windows客户端连接

客户端下载地址:https://tortoisesvn.net/downloads.html

根据本地系统选择版本下载即可

下载完成后安装,安装完成后到D盘根目录下右键

点击【OK】

出现这个问题的原因是由于防火请问题造成

那么我们如何处理呢?我们为svn指定端口,然后在指定区域开放此端口

执行以下命令

firewall-cmd --permanent --zone=public --add-port=3690/tcp

接着就打开防火请并查看状态

systemctl start firewalld

systemctl status firewalld

再添加3690端口

firewall-cmd --permanent --zone=public --add-port=3690/tcp

接着重启防火墙

firewall-cmd --reload

原文地址:https://www.cnblogs.com/OliverQin/p/9762134.html

时间: 2024-11-03 03:38:00

【svn】Centos搭建svn服务器环境的相关文章

CentOS搭建PHP服务器环境

安装httpd mysql mysql-server php: yum install -y httpd mysql mysql-server php php-devel 安装php的扩展 yum install -y php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring 启动apache.mysql: /etc/init.d/httpd start /etc/init.d/mys

Linux(CentOS)搭建SVN服务器全攻略

虽然在windows上搭建SVN很简单,但是效能却不高,这当然是和linux相比了.然而在linux上搭建SVN却非常繁琐,所以今天这篇文章就来一步一步教您如何在Centos上搭建SVN 安装#yum install subversion 1)创建svn用户#groupadd svn#useradd -g sky user//是将user加入到sky組內切换用户#su svn以后代码库的创建维护等,都用这个帐户来操作. 2)创建版本库编辑.bash_profile 加上如下配置SVN_HOME=

[记录]CentOS搭建SVN服务器(主从同步)

CentOS搭建SVN服务器(主从同步)1.安装步骤如下: 1)安装: #yum install subversion 2)查看安装位置: #rpm -ql subversion 3)查看版本: #/usr/bin/svnversion --version2.创建svn版本库目录 #mkdir -p /var/svn/svnrepos3.创建版本库 #svnadmin create /var/svn/svnrepos4.进入/var/svn/svnrepos/conf目录 1)authz文件是权

在CentOS搭建Git服务器 转

在CentOS搭建Git服务器 来自 :http://www.jianshu.com/p/69ea5ded3ede 前言 我们可以GitHub发布一些开源代码的公共仓库,但对于私密仓库就需要收费了.公司内部通常会搭建自己的Git服务器,我也通过在自己的服务器上搭建练习一下. 开始前先说一下服务器信息,这里是阿里云的CentOS 6.5 64位操作系统. 一 确认服务器是否安装Git [[email protected] git]# rpm -qa gitgit-1.7.1-3.el6_4.1.x

centos搭建samba服务器

centos搭建samba服务器 Samba是在Linux和UNIX系统上实现SMB协议的一个免费软件,由服务器及客户端程序构成.SMB(Server Messages Block,信息服务块)是一种在局域网上共享文件和打印机的一种通信协议,它为局域网内的不同计算机之间提供文件及打印机等资源的共享服务.SMB协议是客户机/服务器型协议,客户机通过该协议可以访问服务器上的共享文件系统.打印机及其他资源.通过设置"NetBIOS over TCP/IP"使得Samba不但能与局域网络主机分

CentOS搭建Git服务器及权限管理

声明:本教程,仅作为配置的记录,细节不展开,需要您有一点linux的命令基础,仅作为配置参考. 1. 系统环境 系统: Linux:CentOS 7.2 64位 由于CentOS已经内置了OpenSSH,如果您的系统没有,请自行安装. 查看ssh版本 $ ssh -V # 输出以下表示没问题,可以继续. 版本可能不一致,能用即可. OpenSSH_6.6.1p1, OpenSSL 1.0.1e-fips 11 Feb 2013 避免系统环境和其他的不一致,请核对您系统的版本,其他发行版请对应修改

使用Linux(CentOS) 搭建SVN服务器全攻略

本文主要讲解Linux搭建SVN服务器,希望对大家的学习有所帮助. 因为现在在公司用到这个svn高大上工具,很方便管理一个部门所有人统一查看文件和共享,可以在线更新文档上.所以在这里我就很详细给大家操作搭建下服务以及使用. 1.什么是SVN(subversion) 什么是svn呢?简单的说,您可以把svn当作你的备份服务器,更好的是,他可以帮助您记住你共享文件和创建文件每次上传到这个服务器的档案内容.并且自动的赋予每次的变更一个版本. 2.为什么要用SVN (1). 备份工作档案的重要性,你永远

阿里云CentOS搭建SVN服务器及权限管理

linux(centos)下SVN服务器如何搭建?说到SVN服务器,想必大家都知道,可以是在LINUX下如何搭建SVN服务器呢?那么今天给大家分享一下linux(centos)搭建SVN服务器的思路! 虽然在windows上搭建SVN很简单,但是效能却不高,这当然是和linux相比了.然而在linux上搭建SVN却非常繁琐,所以今天这篇文章就来一步一步教您如何在Centos上搭建SVN. 安装步骤如下: 1.yum install subversion 2.输入rpm -ql subversio

centos搭建svn服务器

1.在centos6.5上面搭建svn服务器,安装svn服务器:yum install subversion 2.在任意目录下创建仓库目录,这里放在/data/mypros目录下 3.执行命令:svnadmin create /data/mypro,初始化仓库,可以看到目录下面多了些文件,进入conf目录下,编辑authz,在文件末尾增加: [/] jack=rw 退出保存,然后编辑passwd文件,增加用户名和密码:jack=jack 再编辑svnserve.conf文件,打开注释,并修改以下