博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 7 配置部署SVN服务
阅读量:5806 次
发布时间:2019-06-18

本文共 3298 字,大约阅读时间需要 10 分钟。

1. 安装 SVN 服务端

在 CentOS 下使用 yum 命令可以很方便的完成安装 subversion

[root@localhost ~]# yum -y install subversion

测试是否安装完成 svnserve --version

svnserve, version 1.7.14 (r1542130)   compiled Apr 11 2018, 02:40:28Copyright (C) 2013 The Apache Software Foundation.This software consists of contributions made by many people; see the NOTICEfile for more information.Subversion is open source software, see http://subversion.apache.org/The following repository back-end (FS) modules are available:* fs_base : Module for working with a Berkeley DB repository.* fs_fs : Module for working with a plain file (FSFS) repository.Cyrus SASL authentication is available.

2. 建立版本库

创建 SVN 数据目录(默认 /var/svn 为数据根目录)

[root@localhost ~]# mkdir /var/svn

创建版本库 hello(名字可以任取)

[root@localhost ~]# svnadmin create /var/svn/hello

版本库的结构如下 sudo tree -L 2 /var/svn/hello

├── conf│   ├── authz│   ├── passwd│   └── svnserve.conf├── db│   ├── current│   ├── format│   ├── fsfs.conf│   ├── fs-type│   ├── min-unpacked-rev│   ├── revprops│   ├── revs│   ├── transactions│   ├── txn-current│   ├── txn-current-lock│   ├── txn-protorevs│   ├── uuid│   └── write-lock├── format├── hooks│   ├── post-commit.tmpl│   ├── post-lock.tmpl│   ├── post-revprop-change.tmpl│   ├── post-unlock.tmpl│   ├── pre-commit.tmpl│   ├── pre-lock.tmpl│   ├── pre-revprop-change.tmpl│   ├── pre-unlock.tmpl│   └── start-commit.tmpl├── locks│ ├── db.lock│ └── db-logs.lock└── README.txt

3. 配置版本库

1) 编辑 SVN 配置文件

[root@localhost ~]# vim /var/svn/hello/conf/svnserve.conf

修改为如下内容:

anon-access = none          #(19)控制非鉴权用户访问版本库的权限auth-access = write         #(20)控制鉴权用户访问版本库的权限password-db = passwd        #(27)指定用户名口令文件名authz-db = authz            #(34)指定权限配置文件名realm = hello               #(39)指定版本库的认证域

2) 编译用户配置文件

[root@localhost ~]# vim /var/svn/hello/conf/passwd

添加用户信息:

[users]# username = passwordadmin = pswdtemp = test

3) 编辑权限控制文件

[root@localhost ~]# vim /var/svn/hello/conf/authz

为用户分配目录与权限

[/]                 # /表示SVN仓库的根目路admin = rw          # 拥有根目录的读写权限temp = r            # 只有根目录的查看权限[/temp]temp = rw           # 拥有/temp目录下的读写权限

4. 启动SVN服务

推荐使用 systemctl 操作服务管理器

[root@localhost ~]# systemctl restart svnserve.service

设置开机启动

[root@localhost ~]# systemctl enable svnserve.service

5. 关闭安全服务

1) 关闭防火墙

临时关闭防火墙

[root@localhost ~]# systemctl stop firewalld

禁止开机启动

[root@localhost ~]# systemctl disable firewalld

查看状态 sudo systemctl status firewalld

● firewalld.service - firewalld - dynamic firewall daemon   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)   Active: inactive (dead)     Docs: man:firewalld(1)

2) 关闭 SeLinux

临时关闭内部安全机制

[root@localhost ~]# setenforce 0

编辑 SELINUX 配置文件

vim /etc/selinux/config

永久关闭(将 enforcing 改为 disable )

SELINUX=disable

查看状态 sudo /usr/sbin/sestatus

SELinux status:                 enabledSELinuxfs mount:                /sys/fs/selinuxSELinux root directory:         /etc/selinuxLoaded policy name:             targetedCurrent mode:                   permissiveMode from config file:          error (Success)Policy MLS status:              enabledPolicy deny_unknown status:     allowedMax kernel policy version:      31

6. 使用 TortoiseSVN

选择一个空文件夹,鼠标右键点击 SVN checkout

image

在 URL of repository 中填写 svn 地址(CentOS IP地址使用 ifconfig 查看)

image

在验证框中填写用户账号与密码

image

最后弹出 Checkout Finished,表示 SVN 客户端已经可以正常使用了

image

转载地址:http://iqubx.baihongyu.com/

你可能感兴趣的文章
cookie的一些细节
查看>>
JAVA包命名规范
查看>>
[置顶] 大型网站技术架构(二)架构模式
查看>>
HDU 3268 Columbus’s bargain
查看>>
QT pri 文件的作用
查看>>
Callable与Future、FutureTask的学习 & ExecutorServer 与 CompletionService 学习 & Java异常处理-重要...
查看>>
excl筛选求和
查看>>
Dapper ORM 用法—Net下无敌的ORM(转)
查看>>
kafka_2.11-0.8.2.1单机版安装
查看>>
Linux目录结构及用途
查看>>
钩针纺织资料
查看>>
队列的实现
查看>>
SWFUpload使用指南
查看>>
所谓厉害的人,遇到问题时的思维模式与我们的差别在哪?(转自知乎)
查看>>
amazeui的表单开关插件的自定义事件必须添加.bootstrapSwitch 命名空间,给了我们什么启示...
查看>>
poj 2104 K-th Number 主席树+超级详细解释
查看>>
乐透TV:php 优酷视频采集,小示例(基于phpquery)
查看>>
企业架构研究总结(37)——TOGAF企业连续体和工具之架构资源库及架构工具的选择...
查看>>
Openstack_通用模块_Oslo_vmware 创建 vCenter 虚拟机快照
查看>>
方法编写经验总结
查看>>