博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux运维、架构之路-Zabbix监控
阅读量:5126 次
发布时间:2019-06-13

本文共 3682 字,大约阅读时间需要 12 分钟。

一、监控常用命令

1、物理服务器监控命令

①添加yum源

wget -O /etc/yum.repos.d/CentOS-Base.repo  http://mirrors.aliyun.com/repo/Centos-6.repo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo

②安装

yum -y install OpenIPMI ipmitool[root@xenserver7-01 ~]# ipmitool sdr type Temperature #查看温度Temp             | 01h | ns  |  3.1 | DisabledTemp             | 02h | ns  |  3.2 | DisabledTemp             | 05h | ns  | 10.1 | DisabledTemp             | 06h | ns  | 10.2 | DisabledAmbient Temp     | 0Eh | ok  |  7.1 | 20 degrees CPlanar Temp      | 0Fh | ns  |  7.1 | DisabledIOH THERMTRIP    | 5Dh | ns  |  7.1 | DisabledCPU Temp Interf  | 76h | ns  |  7.1 | DisabledTemp             | 0Ah | ns  |  8.1 | DisabledTemp             | 0Bh | ns  |  8.1 | DisabledTemp             | 0Ch | ns  |  8.1 | Disabled

2、cpu常用监控命令

lscputop:z加颜色  x高亮排序列 < > 左右移动uptimehtop:top的升级版,支持鼠标

3、内存、硬盘监控命令 

free -h、free -m、df -h、iotop

4、网络监控命令

yum -y install iftop nethogs

iftop:查看主机间的流量,指定网卡查看 iftop -i eth1

nethogs:查看进程使用的流量

smokeing

二、Zabbix监控

1、介绍

        Zabbix是一个企业级的、开源的、分布式的监控套件,Zabbix可以监控网络和服务的监控状况. Zabbix利用灵活的告警机制,允许用户对事件发送基于Email的告警. 这样可以保证快速的对问题作出相应. Zabbix可以利用存储数据提供杰出的报告及图形化方式. 这一特性将帮助用户完成容量规划。是目前生产环境非常流行的一个zabbix监控软件了

2、Zabbix架构图形

 3、安装部署

①部署环境

[root@m01 tools]# cat /etc/redhat-release CentOS release 6.9 (Final)[root@m01 tools]# uname -r2.6.32-696.el6.x86_64[root@m01 tools]# getenforce Disabled[root@m01 tools]# /etc/init.d/iptables statusiptables: Firewall is not running.

②服务器规划

管理机m01[root@m01 tools]# hostname -I10.0.0.61 172.16.1.61web01[root@web01 ~]# hostname -I10.0.0.8 172.16.1.8

③服务端安装配置

#上传定制好的rpm包解压tar xfP zabbix3.0.9_yum.tar.gz#快速安装LAMP环境yum -y --nogpgcheck -C install httpd zabbix-web zabbix-server-mysql zabbix-web-mysql zabbix-get mysql-server php55w php55w-mysql php55w-common php55w-gd php55w-mbstring php55w-mcrypt php55w-devel php55w-xml php55w-bcmath zabbix-get zabbix-java-gateway wqy-microhei-fonts net-snmp net-snmp-utils#配置mysql\cp /usr/share/mysql/my-medium.cnf /etc/my.cnf/etc/init.d/mysqld startmysql -e 'create database zabbix character set utf8 collate utf8_bin;'mysql -e "grant all on zabbix.* to zabbix@'localhost' identified by 'zabbix';"zcat /usr/share/doc/zabbix-server-mysql-3.0.9/create.sql.gz |mysql -uzabbix -pzabbix zabbix#配置PHPegrep -n "^post_max_size|^max_execution_time|^max_input_time|^date.timezone" /etc/php.inised -i 's#max_execution_time = 30#max_execution_time = 300#;s#max_input_time = 60#max_input_time = 300#;s#post_max_size = 8M#post_max_size = 16M#;910a date.timezone = Asia/Shanghai' /etc/php.ini#配置zabbix-server连接数据库sed -i '115a DBPassword=zabbix' /etc/zabbix/zabbix_server.conf#配置zabbix网页及授权cp -R /usr/share/zabbix/ /var/www/html/chmod -R 755 /etc/zabbix/webchown -R apache.apache /etc/zabbix/web #启动zabbix服务echo "ServerName 127.0.0.1:80">>/etc/httpd/conf/httpd.conf/etc/init.d/httpd start/etc/init.d/zabbix-server start#加入开机自启动cat>>/etc/rc.local<

④客户端安装配置

rpm -ivh http://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/6/x86_64/zabbix-agent-3.0.9-1.el6.x86_64.rpmsed -i 's#Server=127.0.0.1#Server=172.16.1.61#' /etc/zabbix/zabbix_agentd.conf/etc/init.d/zabbix-agent start Starting Zabbix agent:                                     [  OK  ]

CentOS7

rpm -ivh http://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/7/x86_64/zabbix-agent-3.0.9-1.el7.x86_64.rpmsed -i 's#Server=127.0.0.1#Server=172.16.1.61#' /etc/zabbix/zabbix_agentd.confsystemctl start zabbix-agent.servicesystemctl enable zabbix-agent.service

⑤浏览器输入http://10.0.0.61/zabbix/

 

 

 

⑥解决web页面显示乱码问题

\cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf

到此Zabbix网页端安装完毕

4、网页添加一个被监控客户端web01

如上图所示,说明监控项已添加成功 

转载于:https://www.cnblogs.com/yanxinjiang/p/7715155.html

你可能感兴趣的文章
Spring JDBCTemplate
查看>>
Radon变换——MATLAB
查看>>
第五章笔记
查看>>
Notepad++如何真正启用自动缩进
查看>>
Iroha and a Grid AtCoder - 1974(思维水题)
查看>>
前端博客收藏
查看>>
python re模块
查看>>
python 面向对象(类的特殊成员)
查看>>
2015-2016规划
查看>>
关于linux下的.a文件与 .so 文件
查看>>
创建父子结构的Maven项目
查看>>
2015年蓝桥杯省赛A组c++第3题
查看>>
ubuntu 安装tigervnc
查看>>
gzip
查看>>
转负二进制(个人模版)
查看>>
LintCode-Backpack
查看>>
查询数据库锁
查看>>
NOIP2005 普及组 入学考试 「DP」
查看>>
python——变量
查看>>
C# 判断数据库是否存在某张表
查看>>