标签:started 机器 etc not server 直接 tag 通过 ref
记录一次批量安装zabbix_agent 由于要安装的系统里面是其他组安装了openstack不想用他们的源来安装不知道什么版本的agent所以我就写一个简单的批量安装我们自己版本的zabbix_agent
知识点 ansible的一些命令,会点系统的都能看懂。
首先有这么几个文件和目录
hosts
readme.txt
roles
zabbix.yml
先看readme.txt
直接运行,注意远程用户的修改
ansible-playbook -i hosts zabbix.yml
如果报错,rpm包已经安装就这样忽略rpm包的安装
ansible-playbook -i hosts zabbix.yml --skip-tags=rpm_yes
hosts里面修改需要安装的机器列表
如果是密钥连接
eval `ssh-agent`
ssh-add
之后就可以运行了。
name: create-software
file: path=/home/{{ansible_env.SUDO_USER}}/software state=directory
这段就是创建了目录放一些需要用的文件
name: copy-rpm
copy: src={{item}} dest=/home/{{ansible_env.SUDO_USER}}/software/ mode=0644
with_items:
name: shell
shell: rpm -ivh /home/{{ansible_env.SUDO_USER}}/software/{{item}}
with_items:
name: unarchive_scripts
unarchive: src=/home/{{ansible_env.SUDO_USER}}/software/scripts.tar.gz dest=/etc/zabbix/ copy=no mode=755
unarchive解压模块解压到特定的目录里面
name: copy files
copy: src={{item}} dest=/etc/zabbix/zabbix_agentd.d/ mode=0644 owner=root
with_fileglob:
name: start-zabbix-agent
service: name=zabbix-agent state=started enabled=yes
就是把服务开启 设置开机启动这个可以设置到最后
文件下载在 http://down.51cto.com/data/2453090
标签:started 机器 etc not server 直接 tag 通过 ref
原文地址:http://blog.51cto.com/shaonian/2299209