您当前所在位置:首页安装教程Linux下SVN的安装和配置

Linux下SVN的安装和配置

更新:2023-11-19 11:28:54编辑:tooool归类:安装教程人气:152

SVN 是一个自由开源的版本管理系统,它可以按照时间的顺序去管理文件、目录以及对其进行的修改。于今,它被广泛的用于互联网公司的项目版本管理中

Linux下SVN的安装和配置

工作原理

它的工作原理如下图所示

它是由一个SVN服务器和许多的SVN客户端组成

数据统一存储在SVN服务器上

客户端 从服务器检出(checkout)指定路径上的版本文件到本地,修改了之后再提交(commit)到服务器上,当其他的客户端再次检出或更新的时候,就能获取得到之前客户端提交的修改

这样,多个客户端就可以互不干扰的工作,实现了多人的协作

SVN已经是一个非常成熟且能快速实现项目版本管理的工具了,很多中小团队中都在使用,下面介绍下SVN服务器的安装和配置

安装

yuminstall -y subversion

安装完成之后,执行 svn --version 查看是否安装成功,如果有类似下面的输出则表示安装成功

[root@cghost21 ~]svn --versionsvn, version1.7.14(r1542130)
   compiled Sep302020,17:44:04Copyright (C)2013The Apache Software Foundation.
This software consistsofcontributions madebymany people; see the NOTICE
fileformore information.
Subversionisopen source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_neon : Moduleforaccessing a repository via WebDAV protocol using Neon.
  - handleshttpscheme
  - handleshttpsscheme
* ra_svn : Moduleforaccessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handlessvnscheme
* ra_local : Moduleforaccessing a repositoryonlocal disk.
  - handlesfilescheme

[root@cghost21 ~]

默认目录

  • svnserve 安装目录

svnserve 默认安装在 /usr/bin 目录下,可通过 which svnserve 命令查看

[root@ecs-centos-7~]which svnserve/usr/bin/svnserve
  • 仓库地址

svnserve 默认的仓库地址是 /var/svn , 通过 /etc/sysconfig/svnserve 配置文件可以修改

[root@ecs-centos-7 ~]cat /etc/sysconfig/svnserveOPTIONS is used to pass command-line arguments to svnserve.Specify the repository location in -r parameter:OPTIONS="-r /var/svn"
  • svnserve 端口

svnserve 启动之后,默认使用 3690 端口

[root@ecs-centos-7test_a]netstat-anpt|grepsvnservetcp000.0.0.0:36900.0.0.0:*LISTEN28347/svnserve

配置

  • 创建仓库

安装完成之后,使用 svnadmin create 仓库目录 来创建一个新仓库

我们在 /home/tt 目录下建立一个名为svn的仓库,以后所有的项目文件都放在这个目录下,创建成功之后在svn目录下多了几个子目录

[root@ecs-centos-7tt]svnadmin create /home/tt/svn[root@ecs-centos-7tt]ls svn/conf  dbformathooks  locks  README.txt

conf 目录是存放配置文件的

[root@ecs-centos-7tt]cd svn/conf/[root@ecs-centos-7conf]lsauthz  passwd  svnserve.conf

authz 是用户权限控制文件

passwd 是账号密码配置文件

svnserve.conf 是svnserve服务配置文件

  • 配置用户名密码

编辑 passwd 配置文件,添加ta用户名和123456密码、 tb用户名和12345密码以及tc用户名和123密码

[root@ecs-centos-7 conf]vim passwdThis file is an example password file for svnserve.Its format is similar to that of svnserve.conf. As shown in theexample below it contains one section labelled [users].The name and password for each user follow, one account per line.[users]harry = harryssecretsally = sallyssecretta=123456tb=12345tc=123
  • 配置用户权限

为 SVN 用户 ta 配置读写权限,为 SVN用户 tb 配置只读权限,为 SVN用户 tc 配置只读权限

上图中是配置仓库的根目录访问权限,如果想配置仓库中指定目录的访问权限,可以在末尾增加一个仓库目录,目录下面再配置用户的访问权限即可

比如:仓库根目录下有一个myproject的目录,用户ta有读写权限,用户tb无访问权限,用户tc有只读权限,则 myproject 目录的权限配置如下

[/myproject]
ta=rw
tc=r
*=
  • 配置 svnserve 服务

如上图所示,打开红框中的选项前的注释,注意:每个选项前都不能有空格

anon-access= none匿名用户无法访问auth-access= write授权用户可写password-db= passwd用户密码验证文件authz-db= authz用户权限验证文件realm= /home/tt/svnsvn版本库目录

启动、停止、重启

修改 /etc/sysconfig/svnserve 中OPTIONS 的值为我们新创建的仓库地址

[root@ecs-centos-7 ~]vim /etc/sysconfig/svnserveOPTIONS is used to pass command-line arguments to svnserve.Specify the repository location in -r parameter:OPTIONS="-r /home/tt/svn"

svn安装完成之后,默认已经添加到systemctl中了,使用以下命令启动、停止、重启

[root@ecs-centos-7~]systemctl start svnserve[root@ecs-centos-7~]systemctl stop svnserve[root@ecs-centos-7~]systemctl restart svnserve

在实际的部署中,为了重启机器时,不影响客户端的使用,svnserve通常会设置成开机启动

[root@ecs-centos-7~]systemctl enable svnserveCreatedsymlinkfrom /etc/systemd/system/multi-user.target.wants/svnserve.service to /usr/lib/systemd/system/svnserve.service.

客户端检出

配置好用户密码以及访问权限之后,重新启动 svnserve

新建test_a 目录,进入该目录,执行 svn co svn://192.168.0.9 --username ta --password 123456 命令检出svn仓库中的文件以及目录

[root@ecs-centos-7 tt]mkdir test_a[root@ecs-centos-7 tt]cd test_a/[root@ecs-centos-7 test_a]svn co svn://192.168.0.9 --username ta --password 123456[root@ecs-centos-7 test_a]svn info路径: .工作副本根目录: /home/tt/test_aURL: svn://192.168.0.9版本库根: svn://192.168.0.9版本库 UUID: c9730d20-968c-41c0-a224-4c6a967f8330版本: 1节点种类: 目录调度: 正常最后修改的作者: ta最后修改的版本: 1最后修改的时间: 2020-12-04 23:48:11 +0800 (五, 202-12-04)

适用的场景

每个工具都有其适用的场景,SVN也不例外

当你需要记录文件每一次的修改时间,查看随着时间变化的日志,追溯和回退到任意一次修改时间点时的版本,多人协作一起开发并追踪是谁进行了修改,那么是很适合使用SVN

对于一些比较大的或者后续不会有任何修改的文件、把SVN当做文件传输的中转站,这些都不适合用SVN,比如:从一个SVN客户端上传一部电影到SVN服务器上,然后在另一个SVN客户端更新这个电影文件,这是误用SVN这个工具了,上述文件的同步有专门的工具(rsync)来处理

小结

本章介绍了SVN服务器的工作原理、安装、配置、使用场景等,关于更多SVN相关的知识可以参考官方文档

对于中小创业团队,在事情多,人员少,时间紧的情况下,具有安装简单、使用方便、易上手(特别是对于非技术人员,稍微讲解下就能上手使用)等特点的SVN是非常好的选择

我告诉你msdn版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!

幻想漫画,幻想漫画:探索无限的想象空间 开机时windows未能启动解决方法