ansible配置zabbix自动化安装和配置

安装
  推荐yum安装
    RHEL(CentOS)5版本:
      rpm -Uvh http://mirror.pnl.gov/epel/5/i386/epel-release-5-4.noarch.rpm
    RHEL(CentOS)6版本:
      rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/i386/epel-release-6-8.noarch.rpm
    pip安装
      pip install ansible
      要自己手动创建/etc/ansible/hosts等文件夹
    由于后面要使用sshpass和ssh-copy-id于是
      yum install -y ssh-client sshpass


  目录结构
    ├── copy
    │   ├── zabbix-agent-3.2.11-1.el6.x86_64.rpm
    │   └── zabbix_pip.sh 
    ├── hosts
    ├── scripts
    │   └── zabbix.py
    ├── zabbix_ansible
    │   ├── group_vars
    │   ├── hosts
    │   ├── roles
    │   │   ├── ab
    │   │   │   ├── handlers
    │   │   │   │   └── main.yml
    │   │   │   └── tasks
    │   │   │   └── main.yml
    │   │   ├── as
    │   │   │   ├── handlers
    │   │   │   │   └── main.yml
    │   │   │   └── tasks
    │   │   │   └── main.yml
    │   │   └── common
    │   │   ├── handlers
    │   │   │   └── main.yml
    │   │   └── tasks
    │   │   └── main.yml
    │   ├── site.yml
    │   └── start.sh
    └── zabbix_ansible.tar.gz


  hosts
    [ab]
    xx.xx.xx.xx //填写自己需要的IP,也可以使用变量
    [as]
    xx.xx.xx.xx
    xx.xx.xx.xx
    [zainstall:children]
    ab
    as


  site.yml
    - hosts: zainstall
      roles:
      - common
    - hosts: as
      roles:
      - as
    - hosts: ab
      roles:
      - ab

 

  start.sh

#!/bin/bash

read -p "Please input a IP:" IP
read -p "Please input ab or as:" TYPE

if [ $TYPE = 'as' ]; then
  sed "/\[as\]/a $IP" -i hosts
else
  sed "/\[ab\]/a $IP" -i hosts
fi
sshpass -p 'xxxxx' ssh-copy-id -i /root/.ssh/id_rsa.pub -o StrictHostKeyChecking=no root@$IP

ansible-playbook -i hosts site.yml

 

 

  zabbix_pip.sh //我在客户端安装agent时发现zabbix-agent虽然启动,但10050端口没有监听,所以写了这个脚本

if [ ! -d "/var/run/zabbix/zabbix_agentd.pid"]; thenmkdir -p /var/run/zabbix && chown zabbix.zabbix /var/run/zabbix && touch zabbix_agentd.pid
fi

 

  roles/common/tasks/main.yml  //as和ab都要执行的任务
    - name: Copy rpm file to server
      copy:
      src: "{{ item }}"
      dest: /tmp/
      with_fileglob:
      - /etc/ansible/copy/*

      - name: Install package.
      yum:
      name: /tmp/zabbix-agent-3.2.11-1.el6.x86_64.rpm
      state: present

    - name: change zabbix-agent.conf
      command: sed -i.ori 's#Server=127.0.0.1#Server=xx.xx.xx.xx#' /etc/zabbix/zabbix_agentd.conf

    - name: set hostname
      shell: hostname
      register: info

    - name: change zabbix-agent.conf
      command: sed -i.ori '147c Hostname={{info.stdout}}' /etc/zabbix/zabbix_agentd.conf
      #debug: msg={{info.stdout}}

    - name: touch zabbix_agentd.pid
      command: /bin/bash /tmp/zabbix_pip.sh

    - name: start zabbix agent
      service: name=zabbix-agent state=started


  roles/as/tasks/main.yml
    - name: set hostname
      shell: hostname
      register: info

    - name: add host in zabbix server
      script: /etc/ansible/scripts/zabbix.py -C {{ansible_ssh_host}} "My Templates" "Template for AnyBackup process num,Template for AnyBackup process mem" {{info.stdout}}
      #debug: msg={{ansible_ssh_host}}
      notify:
       restart zabbix-agent


  roles/as/handlers/main.yml
    - name: restart zabbix-agent
      service: name=zabbix-agent state=restarted

  zabbix.py //控制zabbix服务端配置主机

#!/usr/bin/python
#coding:utf-8import json
import sys
import urllib2
import argparsefrom urllib2 import URLErrorreload(sys)
sys.setdefaultencoding('utf-8')class zabbix_api:def __init__(self):self.url = 'http://xx.xx.xx.xx:9800/api_jsonrpc.php'self.header = {"Content-Type":"application/json"}def user_login(self):data = json.dumps({"jsonrpc": "2.0","method": "user.login","params": {"user": "xx","password": "xxxx"},"id": 0})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "\033[041m 认证失败,请检查URL !\033[0m",e.codeexcept KeyError as e:print "\033[041m 认证失败,请检查用户名密码 !\033[0m",eelse:response = json.loads(result.read())result.close()#print response['result']self.authID = response['result']return self.authIDdef hostid_get_hostname(self, hostId=''):data = json.dumps({"jsonrpc": "2.0","method": "host.get","params": {"output": "extend","filter": {"hostid": hostId}},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.codeelse:response = json.loads(result.read())#print response
            result.close()if not len(response['result']):print "hostId is not exist"return Falsehost_dict=dict()for host in response['result']:status = {"0": "OK", "1": "Disabled"}available = {"0": "Unknown", "1": "available", "2": "Unavailable"}host_dict['name']=host['name']host_dict['status']=status[host['status']]host_dict['available']=available[host['available']]return host_dictdef hostid_get_hostip(self, hostId=''):data = json.dumps({"jsonrpc": "2.0","method": "hostinterface.get","params": {"output": "extend","filter": {"hostid": hostId}},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.codeelse:response = json.loads(result.read())# print response
            result.close()if not len(response['result']):print "\033[041m hostid \033[0m is not exist"return Falsefor hostip in response['result']:return hostip['ip']def host_get(self,hostName=''):data=json.dumps({"jsonrpc": "2.0","method": "host.get","params": {"output": "extend",#"filter":{"host":""}"filter":{"host":hostName}},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.codeelse:response = json.loads(result.read())#print reqponse
            result.close()if not len(response['result']):print "\033[041m %s \033[0m is not exist" % hostNamereturn Falseprint "主机数量: \033[31m%s\033[0m"%(len(response['result']))for host in response['result']:status={"0":"OK","1":"Disabled"}available={"0":"Unknown","1":"available","2":"Unavailable"}#print hostif len(hostName)==0:print "HostID : %s\t HostName : %s\t HostIp : %s\t Status :%s \t Available :%s"%(host['hostid'],host['name'],self.hostid_get_hostip(hostId=host['hostid']),status[host['status']],available[host['available']])else:print "HostID : %s\t HostName : %s\t HostIp : %s\t Status :\033[32m%s\033[0m \t Available :\033[31m%s\033[0m"%(host['hostid'],host['name'],self.hostid_get_hostip(hostId=host['hostid']),status[host['status']],available[host['available']])return host['hostid']def hostip_get(self, hostIp=''):data = json.dumps({"jsonrpc": "2.0","method": "hostinterface.get","params": {"output": "extend","filter": {"ip": hostIp}},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:if hasattr(e, 'reason'):print 'We failed to reach a server.'print 'Reason: ', e.reasonelif hasattr(e, 'code'):print 'The server could not fulfill the request.'print 'Error code: ', e.codeelse:response = json.loads(result.read())# print response
            result.close()if not len(response['result']):print "\033[041m hostip \033[0m is not exist"return Falseprint "主机数量: \33[31m%s\33[0m" % (len(response['result']))for hostip in response['result']:host = self.hostid_get_hostname(hostip['hostid'])if len(hostip) == 0:print "HostID : %s\t HostName : %s\t HostIp : %s\t Status :\33[32m%s\33[0m \t Available :\33[31m%s\33[0m"%(hostip['hostid'],host['name'],hostip['ip'],host['status'],host['available'])else:print "HostID : %s\t HostName : %s\t HostIp : %s\t Status :\33[32m%s\33[0m \t Available :\33[31m%s\33[0m"%(hostip['hostid'],host['name'],hostip['ip'],host['status'],host['available'])return hostip['hostid']def hostgroup_get(self, hostgroupName=''):data = json.dumps({"jsonrpc":"2.0","method":"hostgroup.get","params":{"output": "extend","filter": {"name": hostgroupName}},"auth":self.user_login(),"id":1,})request = urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "Error as ", eelse:# result.read()response = json.loads(result.read())result.close()#print response()if not len(response['result']):print "\033[041m %s \033[0m is not exist" % hostgroupNamereturn Falsefor group in response['result']:if  len(hostgroupName)==0:print "hostgroup:  \033[31m%s\033[0m \tgroupid : %s" %(group['name'],group['groupid'])else:print "hostgroup:  \033[31m%s\033[0m\tgroupid : %s" %(group['name'],group['groupid'])self.hostgroupID = group['groupid']return group['groupid']def template_get(self,templateName=''):data = json.dumps({"jsonrpc":"2.0","method": "template.get","params": {"output": "extend","filter": {"name":templateName}},"auth":self.user_login(),"id":1,})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "Error as ", eelse:response = json.loads(result.read())result.close()#print responseif not len(response['result']):print "\033[041m %s \033[0m is not exist" % templateNamereturn Falsefor template in response['result']:if len(templateName)==0:print "template : %s \t id : %s" % (template['name'], template['templateid'])else:self.templateID = response['result'][0]['templateid']print "Template Name :%s"%templateNamereturn response['result'][0]['templateid']def hostgroup_create(self,hostgroupName):if self.hostgroup_get(hostgroupName):print "hostgroup  \033[42m%s\033[0m is exist !" % hostgroupNamesys.exit(1)data = json.dumps({"jsonrpc": "2.0","method": "hostgroup.create","params": {"name": hostgroupName},"auth": self.user_login(),"id": 1})request=urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "Error as ", eelse:response = json.loads(result.read())result.close()print "添加主机组:%s  hostgroupID : %s"%(hostgroupName,self.hostgroup_get(hostgroupName))def host_create(self, hostIp, hostgroupName, templateName, hostName):if self.host_get(hostName) or self.hostip_get(hostIp):print "该主机已经添加!"sys.exit(1)group_list=[]template_list=[]for i in hostgroupName.split(','):var = {}var['groupid'] = self.hostgroup_get(i)group_list.append(var)for i in templateName.split(','):var={}var['templateid']=self.template_get(i)template_list.append(var)data = json.dumps({"jsonrpc":"2.0","method":"host.create","params":{"host": hostName,"interfaces": [{"type": 1,"main": 1,"useip": 1,"ip": hostIp,"dns": "","port": "10050"}],"groups": group_list,"templates": template_list,},"auth": self.user_login(),"id":1})request = urllib2.Request(self.url, data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)response = json.loads(result.read())result.close()print "add host : %s id :%s" % (hostIp, hostName)except URLError as e:print "Error as ", eexcept KeyError as e:print "\033[041m 主机添加有误,请检查模板正确性或主机是否添加重复 !\033[0m",eprint responsedef host_disable(self,hostip):data=json.dumps({"jsonrpc": "2.0","method": "host.update","params": {"hostid": self.host_get(hostip),"status": 1},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "Error as ", eelse:response = json.loads(result.read())result.close()print '------------主机现在状态------------'print self.host_get(hostip)def host_enable(self,hostip):data=json.dumps({"jsonrpc": "2.0","method": "host.update","params": {"hostid": self.host_get(hostip),"status": 0},"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)except URLError as e:print "Error as ", eelse:response = json.loads(result.read())result.close()print '------------主机现在状态------------'print self.host_get(hostip)def host_delete(self,hostNames):hostid_list=[]for hostName in hostNames.split(','):hostid = self.host_get(hostName=hostName)if not hostid:print "主机 \033[041m %s\033[0m  删除失败 !" % hostNamesys.exit()hostid_list.append(hostid)data=json.dumps({"jsonrpc": "2.0","method": "host.delete","params": hostid_list,"auth": self.user_login(),"id": 1})request = urllib2.Request(self.url,data)for key in self.header:request.add_header(key, self.header[key])try:result = urllib2.urlopen(request)result.close()print "主机 \033[041m %s\033[0m  已经删除 !" % hostNameexcept Exception,e:print  eif __name__ == "__main__":zabbix=zabbix_api()parser=argparse.ArgumentParser(description='zabbix api ',usage='%(prog)s [options]')parser.add_argument('-H','--host',nargs='?',dest='listhost',default='host',help='查询主机')parser.add_argument('-G','--group',nargs='?',dest='listgroup',default='group',help='查询主机组')parser.add_argument('-T','--template',nargs='?',dest='listtemp',default='template',help='查询模板信息')parser.add_argument('-A','--add-group',nargs=1,dest='addgroup',help='添加主机组')parser.add_argument('-C','--add-host',dest='addhost',nargs=4,metavar=('xx.xx.xx.xx', 'groupname', 'Template01,Template02', 'hostName'),help='添加主机,多个主机组或模板使用逗号')parser.add_argument('-d','--disable',dest='disablehost',nargs='+',metavar=('sh-aa-01'),help='禁用主机,填写主机名,多个主机名之间用逗号')parser.add_argument('-e','--enable',dest='enablehost',nargs=1,metavar=('sh-aa-01'),help='开启主机')parser.add_argument('-D','--delete',dest='deletehost',nargs='+',metavar=('sh-aa-01'),help='删除主机,多个主机之间用逗号')parser.add_argument('-v','--version', action='version', version='%(prog)s 1.0')if len(sys.argv) == 1:print zabbix.host_delete('hz-aaa-02')else:args = parser.parse_args()if args.listhost != 'host':if args.listhost:zabbix.host_get(args.listhost)else:zabbix.host_get()if args.listgroup != 'group':if args.listgroup:zabbix.hostgroup_get(args.listgroup)else:zabbix.hostgroup_get()if args.listtemp != 'template':if args.listtemp:zabbix.template_get(args.listtemp)else:zabbix.template_get()if args.addgroup:zabbix.hostgroup_create(args.addgroup[0])if args.addhost:zabbix.host_create(args.addhost[0], args.addhost[1], args.addhost[2], args.addhost[3])if args.disablehost:zabbix.host_disable(args.disablehost)if args.deletehost:zabbix.host_delete(args.deletehost[0])

最后执行./start.sh

转载于:https://www.cnblogs.com/MicoYang/p/10823937.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/483474.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux的系统移植——内核启动

1.uImage zImage Image bzImage的区别 \qquaduImage既包括内核数据,又包括和uboot的衔接数据;zImage Image bzImage本质是一样的,但是数据压缩的格式不同,只包含内核内容。 2.uboot内核启动条件 \qquad启动参数;文件系…

爬取Github Web API 并存入Mysql数据库

写在前面 本文内容为爬取GitHub的Web API并存入mysql数据库,内容为华为鸿蒙OS相关的代码。 WEB API Web API是网络应用程序接口。它包含了广泛的功能,网络应用通过API接口,可以实现存储服务、消息服务、计算服务等能力。Web API最主要的功能…

Facebook 正在研究新型 AI 系统,以自我视角与世界进行交互

来源:AI科技大本营(ID:rgznai100)编译:禾木木你是否能想象 AI 以第一人称视角来理解世界是什么样的呢?未来,以第一人称视角理解世界的 AI 可以开启沉浸式体验的新时代。增强现实(AR)…

浏览器窗口尺寸clientHeight / scrollHeight / offsetHeight / innerHeight

https://www.cnblogs.com/nanshanlaoyao/p/5964730.html clientHeight:元素客户区的大小,指的是元素内容及其边框所占据的空间大小(经过实践取出来的大多是视口大小)scrollHeight: 滚动大小,指的是包含滚动内容的元素大…

linux的驱动开发——下载地址

1.gcc下载地址 \qquadgcc下载地址 \qquadgcc依赖下载地址 2.linux内核下载地址 \qquadlinux内核下载地址 3.交叉工具链下载地址 \qquad交叉工具链下载地址 4.uboot下载地址 \qquaduboot下载地址 5.secureCRT和secureFX双软件下载地址和安装参考 \qquadsecure双软件下载地址…

王道计算机网络 数据链路层整理 超详细版

数据链路层的基本概念 结点:主机、路由器 链路:网络中两个结点之间的物理通道,链路的传输介质主要有双绞线、光纤和微波。分为有线链路、无线链路。 数据链路:网络中两个结点之间的逻辑通道,把实现控制数据传输协议…

Linux之用户/组 管理

关机&重启命令 shutdown -h now立刻进行关机shutdown -h 11分钟后关机(shutdown默认等于shutdown -h 1) -h即halt shutdown -r now现在重新启动计算机 -r即reboot halt关机reboot重新启动计算机sync把内存数据同步到磁盘 再进行shutdown/reboot/halt命令在执行…

贝尔实验室:如何让6G成为通用技术

来源:B5G与6G通信作者:沃尔克齐格勒:贝尔实验室“6G leadership”首席架构师。塞波伊约拉:诺基亚企业业务(Nokia Enterprise)首席工程师。未来智能实验室的主要工作包括:建立AI智能系统智商评测…

gedit配置

编辑 \(\rightarrow\) 首选项 \(\rightarrow\) 插件 \(\rightarrow\) 外部工具 启用 进入工具 \(\rightarrow\) Manage External Tools... 点击 添加几个快捷键: 编译 #!/bin/sh name$GEDIT_CURRENT_DOCUMENT_NAME pre${name%.*} g $name -o $pre 编译运行 #!/bin/…

linux的常用操作——read函数和write函数

1 read函数 \qquad返回值:-1:读取失败;0:表示文件读完;>0:读取的字节数 \qquad参数:第一个参数:要读取文件的文件描述符;第二个参数:存取的地址&#xff1…

王道计算机网络 计算机网络体系结构整理 超详细版

计算机网络的概念 计算机网络是 互连的、自治的 计算机系统的集合。 互连:互联互通 自治:无主从关系 计算机网络是一个将分散的、具有独立功能的计算机系统,通过通信设备和线路连接起来,由功能完善的软件实现资源共享和信息传递…

哥德尔的逻辑结构

来源:人机与认知实验室1920年代末,数学圈内的人们均认为所有数学问题都有一个确定的答案一一真或假。比如说,每个偶数均是两个质数之和,数学文献中称这个论断为哥德巴赫猜想。曾几何时,在传统认识中,人们认…

python模拟http请求

下文主要讲述如何利用python自带的库模拟http请求,为以 #!coding:utf-8 相信这句大家都懂的,不解释 #导入需要的python模块httplib,用来模拟提交http请求,详细的用法可见python帮助手册 import httplib #导入需要的python模块urll…

王道计算机组成原理 物理层整理 超详细版

数据通信 通信的目的是传送信息。 数据:传送信息的实体,通常是有意义的符号序列。 信号:数据的电气/电磁的表现,是数据在传输过程中的存在形式。 ​ 数字信号:代表消息的参数取值是离散的。 ​ 模拟信号&#xf…

linux基础知识——mmap

1.mmap函数 \qquad返回值:成功时,返回创建的映射区首地址;失败时,返回宏MAP_FAILED。 \qquad参数: \qquad\quad第一个参数addr:建立映射区的首地址,有linux内核指定,使用时&#xff…

威胁生存!科学家警告灾难性“气候临界点”已逼近

来源:中国新闻网 中新网10月26日电 综合报道,从联合国的一份报告草案中,科学家已发现多个灾难性的“气候临界点”。专家警告,临界点之间相互关联,可能产生连锁反应,成为一种生存威胁。据报道,根…

视音频开发测试文件下载

视音频开发过程中寻找各种合适的测试视频非常麻烦,无意间发现一个国外的网站提供各种格式和大小的视音频文件下载, 但是下载速度很慢,有总比没有好,凑合用吧: https://www.sample-videos.com/ 转载于:https://www.cnbl…

王道计算机网络 网络层整理 超详细版

网络层功能概述 主要任务是把分组从源端传到目的端,为分组交换网上的不同主机提供通信服务。网络层传输单位是数据报。 1、路由选择与分组转发 2、异构网络互联 3、拥塞控制 数据交换方式 电路交换 在进行数据传输时,两个结点之间必须先建立一条专用…

Linux的基础知识——mmap父子通信进程和匿名通信

1.mmap父子进程通信 \qquad父子等有血缘关系的进程之间也可以通过mmap建立的映射区来完成数据通信。但相应的要在创建映射区时候指定对应的标志位参数flags: \qquadMAP_PRIVATE:父子进程各自独占映射区;MAP_SHARED:父子进程共享映射区。 2.m…

ios点击有300毫秒延迟,输入框必须重压或长按才能获取焦点唤起软键盘

以下方法主要针对在vue中的使用 // ios点击有300毫秒延迟 1. 安装依赖包cnpm install fastclick --save 2. 在 /src/main.js 中引入并使用import FastClick from fastclickFastClick.attach(document.body)// 输入框必须重压或长按才能获取焦点唤起软键盘 // 这是由于上面引入了…