[CD] ansible记录

安装

yum -y install ansible
ansible --version

配置

ssh-copy-id -i root@${IP}

vim /etc/ansible/hosts
[dbservers]
${IP1}
${IP2}

使用

ansible -m command -a “hostname” ‘dbservers’

你可能感兴趣的:(DevOps)