如何在智能告警平台CA触发测试告警
686
2023-03-15
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
发表评论
暂时没有评论,来抢沙发吧~