本文共 8214 字,大约阅读时间需要 27 分钟。
笔记内容:安装ansible以及简单使用
笔记日期:2018-01-26ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。
ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架。主要包括:
ansible特点:
ansible官网地址:
ansible官方文档地址:
ansible已经被redhat公司收购,它在github上是一个非常受欢迎的开源软件,github地址:
一本不错的ansible入门电子书:
资源有限本示例仅使用两台机器进行演示,角色如下:
开始安装:
1.只需要在服务端上安装ansible:[root@server ~]# yum list |grep ansible # 可以看到自带源里就有2.4版本的ansibleansible.noarch 2.4.2.0-1.el7 epel ansible-doc.noarch 2.4.2.0-1.el7 epel ansible-inventory-grapher.noarch 2.4.4-1.el7 epel ansible-lint.noarch 3.4.17-1.el7 epel ansible-openstack-modules.noarch 0-20140902git79d751a.el7 epel ansible-review.noarch 0.13.4-1.el7 epel kubernetes-ansible.noarch 0.6.0-0.1.gitd65ebd5.el7 epel python2-ansible-tower-cli.noarch 3.2.1-2.el7 epel [root@server ~]# yum install -y ansible # 安装
2.使用ssh-keygen命令在服务端上生成密钥对:
[root@server ~]# cd .ssh/[root@server ~/.ssh]# ssh-keygen -t rsa # -t指定密钥类型Generating public/private rsa key pair.Enter file in which to save the key (/root/.ssh/id_rsa): # 回车Enter same passphrase again: # 回车Your identification has been saved in ansible.Your public key has been saved in ansible.pub.The key fingerprint is:77:8f:bc:a8:e5:6c:1c:5c:b5:76:c4:44:88:95:60:ee root@serverThe key's randomart image is:+--[ RSA 2048]----+| o+.*o|| o. + o|| .. o || .. o .|| S...E. . || .oo o || ...o . || +o. . || .o+ . |+-----------------+
3.建立服务端与客户端的连接,也就是配置密钥认证的SSH连接:
[root@server ~]# ssh-copy-id root@192.168.77.128 # 拷贝ssh key到客户端/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keysroot@192.168.77.128's password: # 输入客户端的密码Number of key(s) added: 1Now try logging into the machine, with: "ssh 'root@192.168.77.128'"and check to make sure that only the key(s) you wanted were added.[root@server ~]# ssh-keyscan 192.168.77.128 >> ~/.ssh/known_hosts # 设置ssh的时候不会提示是否保存key# 192.168.77.128 SSH-2.0-OpenSSH_6.6.1# 192.168.77.128 SSH-2.0-OpenSSH_6.6.1[root@server ~]# ssh root@192.168.77.128 # 测试在服务端上能否通过密钥登录客户端Last login: Fri Jan 26 12:19:20 2018 from server[root@client ~]# logout # 登录成功Connection to 192.168.77.128 closed.[root@server ~]#
5.编辑服务端上的配置文件,配置远程主机组:
[root@server ~]# vim /etc/ansible/hosts # 在文件末尾增加以下内容[testhost] # 主机组的名称,可自定义,以下的ip为该组内机器的ip192.168.77.128
完成了ssh密钥认证以及主机组的配置之后就可以通过ansible对客户端远程执行命令了:
[root@server ~]# ansible testhost -m command -a 'w' # 可以对某一组机器执行命令192.168.77.128 | SUCCESS | rc=0 >> 13:32:19 up 2:41, 2 users, load average: 0.00, 0.01, 0.05USER TTY FROM LOGIN@ IDLE JCPU PCPU WHATroot pts/0 192.168.77.1 10:52 6:27 0.31s 0.31s -bashroot pts/1 server 13:32 0.00s 0.08s 0.00s w[root@server ~]# ansible testhost -m command -a 'hostname'192.168.77.128 | SUCCESS | rc=0 >>client[root@server ~]# ansible 192.168.77.128 -m command -a 'hostname' # 也可以对某个指定的ip执行命令192.168.77.128 | SUCCESS | rc=0 >>client[root@server ~]#
命令说明:
如果远程执行命令时出现以下错误:
"msg": "Aborting, target uses selinux but python bindings (libselinux-python) aren't installed!"
可以通过安装libselinux-python来解决:
yum install -y libselinux-python
除了使用command模块外,我们还可以使用shell模块来实现远程执行命令:
[root@server ~]# ansible testhost -m shell -a 'w'192.168.77.128 | SUCCESS | rc=0 >> 13:37:41 up 2:46, 2 users, load average: 0.00, 0.01, 0.05USER TTY FROM LOGIN@ IDLE JCPU PCPU WHATroot pts/0 192.168.77.1 10:52 11:49 0.31s 0.31s -bashroot pts/1 server 13:37 0.00s 0.09s 0.00s w[root@server ~]#
command与shell的区别:command模块是用于执行单条命令的,而shell模块则即可以用于执行单条命令,也可以用于执行脚本。
拷贝目录:
[root@server ~]# ansible testhost -m copy -a "src=/etc/ansible dest=/tmp/ansibletest owner=root group=root mode=0755"192.168.77.128 | SUCCESS => { "changed": true, "dest": "/tmp/ansibletest/", "src": "/etc/ansible"}[root@server ~]#
命令说明:
注意:源目录会放到目标目录下面去,如果目标指定的目录不存在,它会自动创建。如果拷贝的是文件,dest指定的名字和源如果不同,并且它不是已经存在的目录,相当于拷贝过去后又重命名。但相反,如果dest是目标机器上已经存在的目录,则会直接把文件拷贝到该目录下面。
查看客户端上有没有拷贝过去的目录:
[root@client ~]# ls /tmp/ansibletestansible[root@client ~]# ls /tmp/ansibletest/ansible/ansible.cfg hosts roles[root@client ~]#
拷贝文件:
[root@server ~]# ansible testhost -m copy -a "src=/etc/passwd dest=/tmp/passwd"192.168.77.128 | SUCCESS => { "changed": true, "checksum": "ddc434f503b675d6652ee8096b05f27044b944dc", "dest": "/tmp/passwd", "gid": 0, "group": "root", "md5sum": "42426e04b715a72392e94bae51c96351", "mode": "0644", "owner": "root", "size": 1792, "src": "/root/.ansible/tmp/ansible-tmp-1516976982.08-72185336471887/source", "state": "file", "uid": 0}[root@server ~]#
命令说明:
这里的/tmp/passwd和源机器上的/etc/passwd是一致的,但如果目标机器上存在一个/tmp/passwd目录,则会在/tmp/passwd目录下面创建passwd文件。
查看客户端上有没有拷贝过去的文件:
[root@client ~]# ll /tmp/passwd -rw-r--r-- 1 root root 1792 1月 26 14:37 /tmp/passwd[root@client ~]#
1.首先在服务端上创建一个简单的shell脚本以作测试:
[root@server ~]# vim /tmp/test.sh#!/bin/bashecho `date` > /tmp/ansible_test.txt
2.然后把该脚本分发到远程机器上:
[root@server ~]# ansible testhost -m copy -a "src=/tmp/test.sh dest=/tmp/test.sh mode=0755"192.168.77.128 | SUCCESS => { "changed": true, "checksum": "1a6e4af02dba1bda6fc8e23031d4447efeba0ade", "dest": "/tmp/test.sh", "gid": 0, "group": "root", "md5sum": "edfaa4371316af8c5ba354e708fe8a97", "mode": "0755", "owner": "root", "size": 48, "src": "/root/.ansible/tmp/ansible-tmp-1516977585.0-265810222310208/source", "state": "file", "uid": 0}[root@server ~]#
说明:脚本文件需要给755的权限,不然无法被直接执行。
3.最后是通过shell模块执行远程机器上的shell脚本:
[root@server ~]# ansible testhost -m shell -a "/tmp/test.sh"192.168.77.128 | SUCCESS | rc=0 >>[root@server ~]#
查看远程机器上,是否执行了这个脚本生成了/tmp/ansible_test.txt文件:
[root@client ~]# cat /tmp/ansible_test.txtFri Jan 26 14:48:54 CST 2018[root@client ~]#
如上,可以看到脚本被正常执行了。
上面我们也提到了shell模块支持远程执行命令,除此之外可以使用管道符,而command模块则不支持使用管道符:
[root@server ~]# ansible testhost -m shell -a "cat /etc/passwd|wc -l"192.168.77.128 | SUCCESS | rc=0 >>38 # 输出的结果[root@server ~]#
ansible使用cron模块来管理任务计划:
[root@server ~]# ansible testhost -m cron -a "name='test cron' job='/bin/touch /tmp/ansible_cron.txt' weekday=6"192.168.77.128 | SUCCESS => { "changed": true, "envs": [], "jobs": [ "test cron" ]}[root@server ~]#
命令说明:
到客户端上查看crontab 是否已添加该任务计划:
[root@client ~]# crontab -l#Ansible: test cron* * * * 6 /bin/touch /tmp/ansible_cron.txt[root@client ~]#
注:crontab 中的注释不可以删除或改动,不然就会失去ansible 的管理。
若要删除该cron 只需要加一个字段 state=absent:
[root@server ~]# ansible testhost -m cron -a "name='test cron' state=absent"192.168.77.128 | SUCCESS => { "changed": true, "envs": [], "jobs": []}[root@server ~]#
删除后再去客户端查看crontab:
[root@client ~]# crontab -l[root@client ~]#
表示时间位的字段:
转载于:https://blog.51cto.com/zero01/2065476