1.增加主机组
vim /etc/ansible/hosts
————————
[webserver]
host1
host2
—————————
ansible webserver -m ping -o 可以发现webserver组下的host1和host2同时被调用了
2.增加用户名和密码
vim /etc/ansible/hosts
————————
[webserver]
host[1:4] ansible_ssh_user='root' ansible_ssh_pass='123456' 方便缺不安全
————————
ansible webserver -m ping -o
3.增加端口
请将host1的sshd程序端口修改成2222 一般用1024-65535之间的端口号,1024之前都被常见软件征用了
vim /etc/ssh/sshd_config
——————————
Port 2222
——————————
systemctl restart sshd 这样别的主机用ssh远程登录需要输入正确的端口号才能连上
ssh root@192.169.56.139 -p 2222
vim /etc/ansible/hosts ansible的hosts里添加端口号
——————————
192.168.56.139 ansible_ssh_user='root' ansible_ssh_pass='123456' ansible_ssh_port='2222'
——————————
4.组:变量