Puppet整合SVN(二):SVN整合Apache

网友投稿 686 2023-03-15

本站部分文章、图片属于网络上可搜索到的公开信息,均用于学习和交流用途,不能代表睿象云的观点、立场或意见。我们接受网民的监督,如发现任何违法内容或侵犯了您的权益,请第一时间联系小编邮箱jiasou666@gmail.com 处理。

Puppet整合SVN(二):SVN整合Apache

Puppet整合SVN(二):SVN整合Apache

1、安装Apache

2、配置SVN账号

1
2
[root@puppet ~]# /usr/bin/htpasswd -bc /etc/svn_passwd puppet 123456   #首次添加账号
[root@puppet ~]# /usr/bin/htpasswd -bm /etc/svn_passwd test 123456     #再次添加账号

12[root@puppet ~]# /usr/bin/htpasswd -bc /etc/svn_passwd puppet 123456   #首次添加账号[root@puppet ~]# /usr/bin/htpasswd -bm /etc/svn_passwd test 123456     #再次添加账号

3、配置虚拟主机

4、重启服务

5、开放端口

1
2
3
4
[root@puppet ~]# netstat -lant|grep 8080
tcp        0      0 :::8080                     :::*                        LISTEN
[root@puppet ~]# iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
[root@puppet ~]# service iptables save

1234[root@puppet ~]# netstat -lant|grep 8080tcp        0      0 :::8080                     :::*                        LISTEN[root@puppet ~]# iptables -I INPUT -p tcp --dport 8080 -j ACCEPT[root@puppet ~]# service iptables save

6、配置访问权限

1
2
3
4
5
6
7
[root@puppet ~]# vi /etc/svn_access
[groups]
admins=puppet
[/]
@admins=rw
test=r
*=

1234567[root@puppet ~]# vi /etc/svn_access[groups]admins=puppet[/]@admins=rwtest=r*=

7、访问测试

8、关闭svn进程

1
2
3
[root@puppet bin]# ps aux|grep svn
root     26379  0.0  0.0 181140   924 ?        Ss   11:15   0:00 svnserve -d -r /usr/local/svn/puppet/
[root@puppet bin]# kill -9 26379

123[root@puppet bin]# ps aux|grep svnroot     26379  0.0  0.0 181140   924 ?        Ss   11:15   0:00 svnserve -d -r /usr/local/svn/puppet/[root@puppet bin]# kill -9 26379

上一篇:Windows如何开启Gzip功能
下一篇:Puppet整合SVN(一):安装配置SVN
相关文章

 发表评论

暂时没有评论,来抢沙发吧~