跳转到主要内容

ansible使用

  • 安装

# 安装扩展源
yum install epel-release
yum install ansible
# 编辑配置疑问句
vi /etc/ansible/hosts

# 加入主机
[groupName]
192.168.0.10
10.vpclub.io

# 支持的参数有
# ansible_port 端口
# ansible_user 用户名
# ansible_password 密码

  • 使用命令

ansible all -m <模块名> -a "参数"

ansible groupName -m <模块名> -a "参数"

ansible 10.vpclub.io -m <模块名> -a "参数"