什么是ansible?ansible是个什么东西呢?官方的title是“AnsibleisSimpleITAutomation”——简单的自动化IT运维管理工具。这个工具的目标有这么几项:让我们自动化部署APP;自动化管理配置项;自动化的持续交付;自动化的(AWS)云服务管理。基于Python开发,可实现对多台服务器..
分类:
其他好文 时间:
2017-04-30 17:23:39
阅读次数:
217
zabbix_agentd 安装与配置 1)创建用户#group zabbix# useradd zabbix -s /sbin/nologin -M 2)安装 # tar -xf zabbix-2.4.4.tar.gz# cd zabbix-2.4.4 ./configure --prefix=/ ...
分类:
其他好文 时间:
2017-04-25 19:14:12
阅读次数:
225
公司有上百台服务器,需要为每台服务器都执行一个脚本,因为所有服务器的账号密码都是一样的,所以可以不用搭建ansible等自动化运维工具,我们直接通过ssh远程执行即可完成本文以三台服务器为例,系统版本:Centos7.31、安装sshpasscd/etc/yum.repos.d/wgethttp://download.ope..
分类:
其他好文 时间:
2017-04-25 14:51:51
阅读次数:
238
环境需求:*Controller一定要是Linux*Windows需要:1.Framework4.52.PowerShell3.0原料:AnsibleMaster(CentOS)AnisbleSlave(WindowsSP1)步骤:[Linux]yum-yinstallpython-kerberos.x86_64python2-winrm.noarch[Windows]下载Framework4.5http://download.microsoft.com/download..
分类:
Windows程序 时间:
2017-04-24 13:19:34
阅读次数:
2470
yum 下载 启动 添加add - name: install httpd service hosts: nginx tasks: - name: install yum: name=httpd state=present - name: service on service: name=httpd ...
分类:
其他好文 时间:
2017-04-17 09:52:15
阅读次数:
160
文档:http://docs.ansible.com/ansible-tower/本文以Ansible-tower-3.1.2OS为CentOS7.2为例。一、安装前注意事项TheTowerinstallercreatesaself-signedSSLcertificateandkeyfileat/etc/tower/tower.certand/etc/tower/tower.keyforHTTPScommunication.Thesecanbereplacedafter..
分类:
其他好文 时间:
2017-04-15 12:43:02
阅读次数:
436
原文 http://zouqingyun.blog.51cto.com/782246/1882367 一、简述 这几天在看了ansible官网,收获蛮多。截取一个lineinfile模块作一个总结。如果批量修改配置文件某一行时,在写playbook时lineinfile避免不了的。 根据官网说法:l ...
分类:
其他好文 时间:
2017-04-14 18:41:38
阅读次数:
195
#configfileforansible--http://ansible.com/
#==============================================
#nearlyallparameterscanbeoverriddeninansible-playbook
#orwithcommandlineflags.ansiblewillreadANSIBLE_CONFIG,
#ansible.cfginthecurrentworkingdirectory,.ansible.cfgin
..
分类:
其他好文 时间:
2017-04-14 15:03:51
阅读次数:
524
简介ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的..
分类:
其他好文 时间:
2017-04-12 22:17:32
阅读次数:
233