标签:虚拟 模块 直接 ssh 登录 内容 ping mamicode mkdir
一、 使用ansible的playbook实现自动化安装httpd二、建立httpd服务器,要求提供两个基于名称的虚拟主机
1、www.X.com,页面文件目录为/web/vhosts/x;错误日志为
/var/log/httpd/x.err,访问日志为/var/log/httpd/x.access
vim x_com.conf
2、www.Y.com,页面文件目录为/web/vhosts/y;错误日志为 /var/log/httpd/www2.err,访问日志为/var/log/httpd/y.access
vim y_com.conf
3、为两个虚拟主机建立各自的主页文件index.html,内容分别为其对应的主机名。
[root@node2 ~]# mkdir -pv /web/vhosts/{x,y}
[root@node2 x]# cat index.html
<h1> www.X.com</h1>
[root@node2 y]# cat index.html
<h1> www.Y.com</h1>
4、接下来使用ansible重启httpd服务。
5、配置hosts文件并测试;
vim /etc/hosts
测试
标签:虚拟 模块 直接 ssh 登录 内容 ping mamicode mkdir
原文地址:https://blog.51cto.com/7814301/2482806