1、使用ansible的playbook实现自动化安装httpd
-->实现ssh的key验证:
1-在主服务器上:ssh-keygen
scp -r .ssh/ 192.168.10.10:/root/
-->修改ansiblehostes:
linux--16--week_第1张图片
-->编写yml文件:
linux--16--week_第2张图片
-->运行:absible-play httpd.yml

2、建立httpd服务器,要求提供两个基于名称的虚拟主机:
(1)www.X.com,页面文件目录为/web/vhosts/x;错误日志为
/var/log/httpd/x.err,访问日志为/var/log/httpd/x.access
(2)www.Y.com,页面文件目录为/web/vhosts/y;错误日志为 /var/log/httpd/www2.err,访问日志为/var/log/httpd/y.access
(3)为两个虚拟主机建立各自的主页文件index.html,内容分别为其对应的主机名
-->安装httpd:
yum -y install httpd
mkdir -p /web/vhosts/{x,y}
启动:systemctl start httpd
-->基于不同ip实现:
ip addr add 192.168.10.104/24 broadcast 192.168.10.255 dev ens33 --添加ip地址
linux--16--week_第3张图片
-->更改配置文件:
linux--16--week_第4张图片
linux--16--week_第5张图片
-->重启服务:验证:
linux--16--week_第6张图片
-->验证日志:
linux--16--week_第7张图片
文件都创建成功;