标签:Zabbix配置与使用
服务端和客户端安装完成之后,接下来该到Web界面的管理后台去配置Zabbix了,因为目前还没有任何数据。下面介绍下Zabbix的配置与使用。顺便说下主动模式与被动模式。
- 被动模式:服务端会主动连接客户端获取监控项目数据,客户端被动地接收连接,并把监控信息传递给服务端
- 主动模式:客户端会主动把监控数据汇报给服务端,服务端只负责接收即可。
- 当客户端数量非常多时,建议使用主动模式,这样可以降低服务端的压力。
- 服务端有公网ip,客户端只有内网ip,但却能连外网,这种场景适合主动模式。
Zabbix管理员用户默认为:admin,密码:zabbix,建议修改成复杂密码。如果忘记密码可以按照下面方法重置密码:
[root@zlinux-01 ~]# mysql -uroot -pzlinux123456
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1795
Server version: 5.6.36-log MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql> update zabbix.users set passwd=md5(‘zlinux123456‘) where alias=‘admin‘;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
这样admin密码就改为zlinux123456了。
点击添加按钮之后看到:
其中出现几个概念:
- 应用集 : 应用集就是多个监控项的组合,比如CPU相关的应用集、内存相关的应用集,应用集里面有具体的监控项。
- 监控项: 监控项就是要监控的项目,比如内存使用、cpu等。
- 触发器: 触发器是针对某个监控项做的告警规则,如磁盘使用量超过80%就触发了告警规则,然后就告警。
- 图形: 监控报表以图形的形式表现出来。
- 自动发现: 自动发现 是zabbix特有的一个机制,它会自动地去发现服务器上监控项目,比如网卡浏览就可以自动发现网卡设备并监控起来。
- web监测: web监测可以去监控指定网站的某个URL访问是否正常,比如状态码是否为200,或者访问时间是否超过某个设定的时间段。
点击添加之后:
然后返回主机可以看到监控项多了4项:
找到Template OS Linux 点击右侧的自动发现,参考Mounted filesystem discovery 和 Network interface discovery定义规则。
下面方法可以定义监控项,触发器 、图形 、自动发现等。
1、先删除自定义模版的监控项:
2、自定义模版添加模版链接:
3、取消链接(不会清除监控项等)
4、选择监控项(留下以下):
5、删除应用集(留下以下):
6、删除其他:
操作到这步,新模板已经建立好了,然后再把主机和模板结合起来,细化相关的监控项。
7、查看相关监控:
出现这些小方块,是因为在zabbix的字体库中没有中文字体,需要从windows上借用一个过来。
[root@zlinux-01 ~]# vim /usr/share/zabbix/include/defines.inc.php //搜素ZBX_FONTPATH
define(‘ZBX_FONTPATH‘, realpath(‘fonts‘)); // where to search for font (GD > 2.0.18)
define(‘ZBX_GRAPH_FONT_NAME‘, ‘graphfont‘); // font file name
它定义的路径是“fonts”,它是一个相对路径,绝对路径为/usr/share/zabbix/fonts
,而字体文件为“ZBX_GRAPH_FONT_NAME” 所定义的“graphfont”,它是一个文件,绝对路径为 /usr/share/zabbix/fonts/graphfont
[root@zlinux-01 ~]# ls -l /usr/share/zabbix/fonts/
总用量 0
lrwxrwxrwx 1 root root 33 4月 12 14:56 graphfont.ttf -> /etc/alternatives/zabbix-web-font
#这是个软链接
然后在windows下C:\Windows\Fonts
,随意找一个中文字体库,上传到Linux中/usr/share/zabbix/fonts/
,并且设置软链接:
[root@zlinux-01 ~]# ls -l /usr/share/zabbix/fonts/
总用量 0
lrwxrwxrwx 1 root root 33 4月 12 14:56 graphfont.ttf -> /etc/alternatives/zabbix-web-font
[root@zlinux-01 ~]# cd /usr/share/zabbix/fonts/
[root@zlinux-01 fonts]# ls
graphfont.ttf
[root@zlinux-01 fonts]# rz
[root@zlinux-01 fonts]# mv graphfont.ttf graphfont.ttf.bak
[root@zlinux-01 fonts]# ln -s simsun.ttc graphfont.ttf
[root@zlinux-01 fonts]# ls
graphfont.ttf graphfont.ttf.bak simsun.ttc
[root@zlinux-01 fonts]# ls -l
总用量 14968
lrwxrwxrwx 1 root root 10 4月 13 17:42 graphfont.ttf -> simsun.ttc
lrwxrwxrwx 1 root root 33 4月 12 14:56 graphfont.ttf.bak -> /etc/alternatives/zabbix-web-font
-rw-r--r-- 1 root root 15323200 6月 11 2009 simsun.ttc
刷新网页:
查看监测数据:
自动发现:
自动发现是由,更新周期决定的,如上图所示,更新时间是1h,所以每一小时更新一次。
标签:Zabbix配置与使用
原文地址:http://blog.51cto.com/3069201/2103165