第一个历程 安装软件
安装依赖关系包
yum install python-dev python-yamlpython-paramiko python-jinja2 git
确保无误,使用yum安装absible
yum install ansible
第二个历程 配置文件
ansbible配置文件
安装后的配置文件位于/etc/ansible
第三个历程
cat >/etc/ansible/hosts <<EF
[web]
172.16.1.7
172.16.1.8
172.16.1.9
EF
第四个历程
要基于ssh工作,所以本地要生成一对ssh秘钥,然后让其基于秘钥认证方式来管理节点
1创建秘钥
ssh-keygen -t rsa -P ‘‘
2、然后向主机分发秘钥:
ssh-copy-id [email protected] 后面跟主机名或者IP地址
传送至被管理控节点上去
ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected] 后面跟主机名或者IP地址
3、如果出现以下情况:
-bash: ssh-copy-id: command not found
需安装 yum install openssh-clients -y
Ansible常用模块
1.ping:主机连通性测试:
ansible all -m ping
- 查看web组所有主机时间
ansible web -m shell -a date
原文地址:https://blog.51cto.com/14328360/2393337
时间: 2024-10-10 08:08:47