码迷,mamicode.com
首页 > 其他好文 > 详细

ansible简单应用

时间:2016-05-20 17:47:46      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:ansible

ansible基于Python开发,集合了众多运维工具的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能,通过ssh实现配置管理、应用部署、任务执行等功能,因此,需要事先配置ansible端能基于密钥认证的方式联系各被管理节点。

命令格式:ansible <host-pattern> [-m module_name] [-a args] [options]

host-pattern     # 目标主机的地址,一般是配置文件中的组名

-m module       # 指定应用的模块

-a  args             # 指定模块的参数

-f                      #一批并行发出多少请求




安装:

[root@marvin ~]# yum install ansible

配置文件:

[root@marvin ansible]# vim /etc/ansible/hosts 
[frontend]
root@marvin.com  ansible_ssh_host=marvin.com ansible_ssh_port=6789
root@sherry.com  ansible_ssh_host=sherry.com ansible_ssh_port=6789

test ping:

[root@marvin ansible]# ansible frontend -m ping
root@marvin.com | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}
root@sherry.com | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}

注意:基于ssh认证模式的ansible只识别authorized_keys这里的公钥  所以如果想要对本机操作 把自己的公钥写到authorized_keys


列出模块:ansible-doc -l

查看模块:ansible-doc  -s  moudle


以下是几个简单的命令实现:

copy:如果是目录一定要绝对路径,才能递归复制

[root@marvin ansible]# ansible frontend -m copy -a ‘src=/etc/hosts dest=/etc/hosts‘
[root@marvin ansible]# ansible frontend -m command -a ‘cat /etc/hosts‘
root@sherry.com | SUCCESS | rc=0 >>
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.1.220 marvin marvin.com
192.168.1.221 sherry sherry.com

root@marvin.com | SUCCESS | rc=0 >>
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.1.220 marvin marvin.com
192.168.1.221 sherry sherry.com

crontab edit update time:

[root@marvin ansible]# ansible others -m cron -a ‘name="update time" minute=*/3 hour=* month=* weekday=* job="/usr/sbin/ntpdate marvin &> /dev/null"‘
[root@marvin ansible]# ansible others -m command -a ‘crontab -l‘
root@lucia.com | SUCCESS | rc=0 >>
#Ansible: update time
*/3 * * * * /usr/sbin/ntpdate marvin &> /dev/null
root@martin.com | SUCCESS | rc=0 >>
#Ansible: update time
*/3 * * * * /usr/sbin/ntpdate marvin &> /dev/null
root@sherry.com | SUCCESS | rc=0 >>
#Ansible: update time
*/3 * * * * /usr/sbin/ntpdate marvin &> /dev/null
[root@marvin ansible]# ansible servers -m command -a ‘date‘
root@sherry.com | SUCCESS | rc=0 >>
Thu May 19 20:19:36 CST 2016
root@martin.com | SUCCESS | rc=0 >>
Thu May 19 20:19:36 CST 2016
root@lucia.com | SUCCESS | rc=0 >>
Thu May 19 20:19:36 CST 2016
root@marvin.com | SUCCESS | rc=0 >>
Thu May 19 20:19:36 CST 2016


组添加:

[root@marvin nginx-1.6.3]# ansible frontend -m group -a ‘gid=304 system=yes name=nginx‘
root@marvin.com | SUCCESS => {
    "changed": true, 
    "gid": 304, 
    "name": "nginx", 
    "state": "present", 
    "system": true
}
root@sherry.com | SUCCESS => {
    "changed": true, 
    "gid": 304, 
    "name": "nginx", 
    "state": "present", 
    "system": true
}
[root@marvin nginx-1.6.3]# tail /etc/group
nginx:x:304:

添加用户:

[root@marvin home]# ansible frontend -m user -a ‘uid=304 system=yes group=nginx createhome=no shell=/sbin/nologin  name=nginx ‘

删除用户:

[root@marvin home]# ansible frontend -m user -a ‘uid=304 state=absent  name=nginx remove=yes‘

yum:

[root@marvin nginx-1.6.3]# ansible frontend -m yum -a ‘name=openssl-devel state=present‘


ansible简单应用

标签:ansible

原文地址:http://9173436.blog.51cto.com/9163436/1775382

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!