PatternsTopicsPatterns在Ansible中,Patterns是指我们怎样确定由哪一台主机来管理.意思就是与哪台主机进行交互.但是在:doc:playbooks中它指的是对应主机应用特定的配置或执行特定进程.我们再来复习下:doc:intro_adhoc章节中介绍的命令用法,命令格式如下:ansible<pattern_goe..
分类:
其他好文 时间:
2017-08-22 00:30:30
阅读次数:
137
下载网站:http://releases.ansible.com/ansible/
中文网站:http://www.ansible.com.cn/docs/
网站:http://docs.ansible.com/ansible/index.html
epel源:http://fedoraproject.org/wiki/EPEL
yuminstallepel*
yuminstallansible
控制端:
vim/etc/ansible/hosts
[ALL]
192..
分类:
其他好文 时间:
2017-08-22 00:25:38
阅读次数:
121
回顾:运维工具,ansible运维工具:OS Provision(系统操作统一化):实体机管理:pxe, cobbler虚拟机管理:Configuration配置管理工具: puppet(最流行), saltstack, chef, cfengine, ...Command and Control命... ...
分类:
其他好文 时间:
2017-08-22 00:21:45
阅读次数:
208
动态InventoryCobbler外部Inventory脚本AWSEC2外部inventory脚本其它inventory脚本使用多个inventory源动态组作为静态组的子组使用配置管理系统经常有一种需求,可能要在其他的软件系统中保存自己的inventory配置信息.Ansible本身通过基于文本的方式来记录inventory配置信息,这..
分类:
其他好文 时间:
2017-08-22 00:19:16
阅读次数:
196
一.升级python 作者系统为centos6.5,系统默认安装python2.6,虽然ansible官方文档要求python版本为2.6或2.7,然而许多人都说使用2.6可能出现一系列问题,所以作者决定将2.6升级为2.7以避免不必要的麻烦。 python下载地址:https://www.pyth ...
分类:
其他好文 时间:
2017-08-21 17:49:00
阅读次数:
184
ansibleplaybook#使用ansible-playbook2.yml工具批量处理多任务[root@host-***.***.***.***ansible]#vim2.txt#({{hostname}}下一行{{port}}){{hostname}}{{port}}▽~"2.txt"[New]2L,28Cwritten[root@host-***.***.***.***ansible]#vim2.vars#(hostname:master下一行port:80..
分类:
其他好文 时间:
2017-08-21 16:36:08
阅读次数:
172
一.synchronize 模块: 有的时候需要你去同步一个目录到本地或者远程,copy当然也可以,但会非常的慢,远远没有synchronize模块给力,a它依赖于rsync去同步,下面简单介绍一下: 使用synchronize同步文件,其参数如下: 二.Script 脚本模块 有的时候需要去执行远 ...
分类:
其他好文 时间:
2017-08-21 16:33:55
阅读次数:
191
计算节点需要配置的主要是nova和neutron的客户端,控制节点在进行资源调度及配置时需要计算节点配合方能实现的,计算节点配置内容相对较少,实际生产环境中,需要配置的计算节点数量相当庞大,那么我们就需要借助ansible或者puppet这样的自动化工具进行了,废话不多讲,直接进..
分类:
其他好文 时间:
2017-08-20 10:09:50
阅读次数:
256
日常的运维工作任务系统安装(物理机、虚拟机)-->程序包安装、配置、服务启动-->批量操作-->程序发布-->监控OSProvisioning物理机:PXE(预引导程序)、CobblerPXE(网卡支持网络引导、dhcp、filename、next-server、tftp-server(UDP69端口监听))-->pxelinux.0-..
分类:
其他好文 时间:
2017-08-17 12:35:12
阅读次数:
2943
命令: ansible -i hosts_20 st -m shell -a 'service zabbix_agentd star' -K --become ansible -i hosts_20 st -m shell -a 'lsof -i:10050' -K --become 在shell模 ...
分类:
系统相关 时间:
2017-08-16 20:33:23
阅读次数:
506