Ansible是一款为类Unix系统开发的自由开源的配置和自动化工具。它用Python写成,类似于Chef和Puppet,但是有一个不同和优点是我们不需要在节点中安装任何客户端。它使用SSH来和节点进行通信。
本篇中我们将在CentOS7上安装并配置Ansible,并且尝试管理两个节点。
Ansible 服务端 – ansible.linuxtechi.com ( 192.168.1.15 )
节点 –192.168.1.9 , 192.168.1.10
第一步: 设置EPEL仓库
Ansible仓库默认不在yum仓库中,因此我们需要使用下面的命令启用epel仓库。
[[email protected] ~]# rpm -iUvhhttp://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
第二步: 使用yum安装Ansible
[[email protected] ~]# yum installansible
安装完成后,检查ansible版本:
[[email protected] ~]# ansible--version
第三步: 设置用于节点鉴权的SSH密钥
在Ansible服务端生成密钥,并且复制公钥到节点中。
[email protected] ~]# ssh-keygen
使用ssh-copy-id命令来复制Ansible公钥到节点中。
第四步:为Ansible定义节点的清单
文件/etc/ansible/hosts 维护着Ansible中服务器的清单。
[[email protected] ~]# vi/etc/ansible/hosts
[test-servers]
192.168.1.9
192.168.1.10
保存并退出文件。
第五步:尝试在Ansible服务端运行命令
使用ping检查‘test-servers’或者ansible节点的连通性。
[[email protected] ~]# ansible -mping ‘test-servers‘
执行shell命令
1:检查Ansible节点的运行时间(uptime)
[[email protected] ~]# ansible -mcommand -a "uptime" ‘test-servers‘
2:检查节点的内核版本
[[email protected] ~]# ansible -mcommand -a "uname -r" ‘test-servers‘
3:给节点增加用户
[[email protected] ~]# ansible -mcommand -a "useradd mark" ‘test-servers‘
[[email protected] ~]# ansible -mcommand -a "grep mark /etc/passwd" ‘test-servers‘
4:重定向输出到文件中
[[email protected] ~]# ansible -mcommand -a "df -Th" ‘test-servers‘ > /tmp/command-output.txt
免费领取兄弟连IT教育原创linux运维工程师视频/细说linux教程,详情咨询官网客服:http://www.lampbrother.net/linux/
或者勾搭Q2430675018
欢迎加入linux交流群 478068715