码迷,mamicode.com
首页 > 系统相关 > 详细

linux安装svn

时间:2020-11-13 13:12:14      阅读:20      评论:0      收藏:0      [点我收藏+]

标签:lin   用户   文件   permanent   守护进程   代码仓库   端口   bsp   配置   

安装环境:Centos 7

1.安装subverision

yum -y install subversion

2.创建代码仓库

mkdir -p /dev/svn/code
svnadmin create /dev/svn/code
ll
总用量 8
drwxr-xr-x 3 root root 120 11月  8 19:33 conf
drwxr-sr-x 6 root root 320 11月  8 19:34 db
-r--r--r-- 1 root root   2 11月  8 13:06 format
drwxr-xr-x 2 root root 220 11月  8 13:06 hooks
drwxr-xr-x 2 root root  80 11月  8 13:06 locks
-rw-r--r-- 1 root root 229 11月  8 13:06 README.txt
cd conf
ll
总用量 12
-rw-r--r-- 1 root root 1128 11月  8 19:33 authz#权限控制
-rw-r--r-- 1 root root  345 11月  8 19:28 passwd#帐号密码
-rw-r--r-- 1 root root 3077 11月  8 19:30 svnserve.conf#SVN服务配置

3.配置文件

passwd
[users]
harry = password
#登录用户名 = 登录密码

authz

[code:/]
#[<版本库>:/项目/目录] harry
= rw #用户名 = 读写【权限】 * = #拒绝其他用户登录

svnservr.conf

anon-access = none
#不允许匿名访问
auth-access = write

authz-db = authz
#权限配置文件名称

password-db = passwd
#密码使用文件名称

realm = this is a test.
#提示

4.防火墙配置端口

firewall-cmd --zone=public --add-port 13690/tcp --permanent
#添加端口
firewall-cmd --reload
#重新加载防火墙配置
firewall-cmd --list-port
#查看当前开放端口

5.启动

svnserve -d -r /dev/svn/code --listen-port 13690
#-d表示守护进程, -r 表示在后台执行,自定义端口--listen-port 

6.验证

svn co svn://127.0.0.1:13690/code

依次输入root密码,harry 用户名及密码。

7.访问svn

浏览器输入svn://IP:13690/code

 

linux安装svn

标签:lin   用户   文件   permanent   守护进程   代码仓库   端口   bsp   配置   

原文地址:https://www.cnblogs.com/aongao/p/13945601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!