Skip to content

ansible

ansible 是一个自动化工具,具体可以查看官方文档ansible 官方文档

安装

sudo apt install ansible

全局配置

/etc/ansible/ansible.cfg 或者 ~/.ansible.cfg :

[defaults]
host_key_checking = False

inventory 配置

/etc/ansible/hosts

mail.example.com

[webservers]
foo.example.com
bar.example.com

[dbservers]
one.example.com
two.example.com
three.example.com
然后可以ping

ansible all -m ping
ansible dbservers -m ping

资源

ansible-cn

ansible user guide