[root@vh1 ~]# vim /etc/ansible/ansible.cfg ##定义分组文件路径
[defaults]
#some basic default values...

inventory = /etc/ansible/hosts ##分组文件路径
:wq

[root@vh1 ~]# vim /etc/ansible/hosts ##定义分组
##db-[99:101]-node.example.com
[web]
192.168.4.2 ansible_ssh_user="root" ansible_ssh_pass="123"
192.168.4.3 ansible_ssh_user="root" ansible_ssh_pass="123456"
[db]
192.168.4.1 ansible_ssh_user="root" ansible_ssh_pass="123456"
:wq

[root@vh1 ~]# vim config_service.yml ###编写yaml脚本
ansible-playbook循环安装软件包(with_items)_第1张图片
[root@vh1 ~]# ansible-playbook config_service.yml ##执行yaml脚本