\3. ansible 服务
任务描述:请采用ansible,实现自动化运维。
(1)在Server2上安装系统自带的ansible-core,作为ansible 控制节
点。Linux1-linux7 作为 ansible 的受控节点。
(2)编写/root/resolv.yml 剧本,实现在所有linux主机的
/etc/resolv.conf文件,文件内容均为linux1的/etc/resolv.conf的内
容。
(3)编写/root/adduser.yml 剧本,实现在所有linux主机的创建用户,
用户名称为xiao密码为Key-1122。
(4)编写/root/cron.yml 剧本,实现在所有linux主机每隔1分钟以
xiao用户执行“date > /date”命令。
```shell
#配置 Server2 与 Linux1 - Linux7 的 SSH 免密码登录
#Server2 上安装 ansible-core
yum install ansible-core -y
#免密登录
ssh-keygen
for((i=1;i<=7;i++))do ssh-copy-id -i /root/.ssh/id_rsa