Linux批量管理神器 ansible部署

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux批量管理神器 ansible部署相关的知识,希望对你有一定的参考价值。

Linux批量管理神器 ansible部署

第一个历程 安装软件
安装依赖关系包
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

  1. 查看web组所有主机时间

ansible web -m shell -a date

以上是关于Linux批量管理神器 ansible部署的主要内容,如果未能解决你的问题,请参考以下文章

天天都在用的自动化运维神器 Ansible,可你会用它批量管理 Windows 服务器吗?

[转帖]Ansible批量远程管理Windows主机(部署与配置)

Linux:综合架构批量管理服务(ansible)-- 下

Ansible 批量部署平台

zabbix批量部署Windows和Linux的agent

Ansible介绍