use to ansible
使用前请 get 到网络
安装 ansible
1.(此处:下载阿里云官方centos7仓库)
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
2.基于epel扩展包的仓库
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
3.安装ansible
yum install -y ansible
ansible 文件优先级
不同情况下 ansible 配置文件生效
编写配置文件
# inventory file
# ip是被控端
# -k 的密码是你被控端的普通用户的密码
# 这里可能需要先不带-k 需要先生成密钥之后带-k 进行连接
[web]
192.168.8.178
免密登入
配置文件中 ansible_password=你被控端的root密码
重新再来一次 ansible web -a "ls"
# 不需要输入密码
playbook
查询文档
apache.yml
文件需要以 yml 结尾
请注意格式