其他分享
首页 > 其他分享> > Ansible配置主机清单

Ansible配置主机清单

作者:互联网

 

1)方式一:

#ip+端口+用户+密码
[root@m01 ~]# vim /etc/ansible/hosts 
[web01]
172.16.1.7 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='1'
[web03]
172.16.1.7 ansible_ssh_port=22

#测试主机清单
[root@m01 ~]# ansible '*' -m ping

 

2)方式二

[root@m01 ~]# vim /etc/hosts
172.16.1.7 web01
172.16.1.9 web03

[root@m01 ~]# vim /etc/ansible/hosts 
[web01]
web01 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='1'
[web03]
web03 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='1'

 

3)方式三

[root@m01 ~]# vim /etc/ansible/hosts 
[web1]
web01 
[web3]
web03
[web1:vars]
ansible_ssh_pass='1'
[web3:vars]
ansible_ssh_pass='1'

 

4)基于秘钥的方式

#生成密钥对
[root@m01 ~]# ssh-keygen

#推送秘钥
[root@m01 ~]# ssh-copy-id 172.16.1.7
[root@m01 ~]# ssh-copy-id 172.16.1.9

#配置
[root@m01 ~]# vim /etc/ansible/hosts 
[web1]
web01
[web3]
web03

 

标签:主机,ansible,Ansible,web03,ssh,web01,m01,清单,root
来源: https://www.cnblogs.com/chenlifan/p/13777145.html