目录
一、环境配置
1、关闭防火墙
2、免密登录配置
3、同步时区
二、服务端配置
1、安装软件
2、查看版本
3、实现远程控制huyang3
4、测试
结果验证:
一、环境配置
1、关闭防火墙
systemctl stop firewalld
iptables -F
setenforce0
2、免密登录配置
【huyang3】ssh-keygen
【huyang3】ssh-copy-id 192.168.1.116
3、同步时区
ntpdate huyang1
二、服务端配置
1、安装软件
yum -y install ansible
2、查看版本
ansible --version
3、实现远程控制huyang3
配置文件:/etc/ansible/hosts
最后加上
【test】
192.168.1.116
4、测试
ansible 192.168.1.116 -m shell -a "mkdir /root/test1"
结果验证: