Ubuntu16.04.5LTS安装SVN的过程
本文简单介绍Ubuntu系统下SVN的搭建过程
更新源
sudo apt-get update
安装SVN
sudo apt-get install subversion
创建文件夹
sudo mkdir /home/svn sudo mkdir /home/svn/repository sudo chmod -R 777 /home/svn/repository sudo svnadmin create /home/svn/repository cd /home/svn/repository/ sudo chmod -R 777 db
修改svnserve.conf
cd /home/svn/repository/conf/ sudo vi svnserve.conf
修改这四行如下所示
anon-access = none 匿名用户不可读 auth-access = write 权限用户可写 password-db = passwd 密码文件为passwd authz-db = authz 权限文件为authz ### users have read and write access to the repository. 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 ### directory containing this file. The specified path may be a ### repository relative URL (^/) or an absolute file:// URL to a text ### file in a Subversion repository. 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 ### The groups-db option controls the location of the groups file.
修改password文件,添加访问用户
sudo vi passwd [users] # harry = harryssecret # sally = sallyssecret lidata = lidata429
给用户增加目录权限
sudo vi authz [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 [/] lidata=rw
启动服务,并且监听81端口
sudo svnserve -d -r /home/svn --listen-port 81
查看svn是否启动
ps -ef | grep svnserve
停止服务
kill all svnserve
总结
以上所述是小编给大家介绍的Ubuntu16.04.5LTS安装SVN的过程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
栏 目:Linux/apache
下一篇:使用dig/nslookup命令查看dns解析的方法步骤
本文地址:https://www.xiuzhanwang.com/a1/Linux_apache/10622.html
您可能感兴趣的文章
- 01-10在 CentOS 8/RHEL 8 上安装和使用 Cockpit的方法
- 01-10ubuntu19.04安装教程(图文步骤)
- 01-10在Linux环境下采用压缩包方式安装JDK 13的方法
- 01-10windows 用VMware创建linux虚拟机安装CentOS7.2操作系统
- 01-10CentOS 8安装ZABBIX4.4的指南
- 01-10Windows操作系统下Linux虚拟机的安装与配置教程图解
- 01-10Centos7 下安装python3及卸载的教程
- 01-10Ubuntu18.04 一键升级Python所有第三方包 及安装python包的方法
- 01-10详解Ubuntu16.04安装nvidia驱动+CUDA+cuDNN的教程
- 01-10linux安装php7的方法详解
阅读排行
本栏相关
- 04-02linux关闭串口命令 关闭linux端口命令
- 04-02linux文件命令重命名 linux重命名文件名
- 04-02linux中jobs命令 shell jobs命令
- 04-02linux命令注入过滤 linux 代码注入
- 04-02linux依次执行命令 linux命令的执行过程
- 04-02linux命令注销vnc linux命令行注销用户
- 04-02linux命令免输入 linux配置免密登录
- 04-02软交换linux命令 软交换网络主要协议
- 04-02linux命令历史记录 linux查看历史记录的
- 04-02linux命令页面 linux命令页面中文
随机阅读
- 01-10delphi制作wav文件的方法
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05dedecms(织梦)副栏目数量限制代码修改