1. 程式人生 > >zabbix配置(上)

zabbix配置(上)

zabbix

主動模式和被動模式

技術分享圖片

添加監控主機

技術分享圖片

1.在主機所在ip網頁配置裏面進行設置

添加自定義模板

技術分享圖片

技術分享圖片

處理圖形中的亂碼

技術分享圖片

1.文字無法顯示,因為沒有字庫

技術分享圖片

2.從Windows上拷貝字體放到linux上

[root@weixing01 ~]# vi /usr/share/zabbix/include/defines.inc.php 
[root@weixing01 ~]# ls /usr/share/zabbix/fonts
graphfont.ttf
[root@weixing01 ~]# ls -l !$
ls -l /usr/share/zabbix/fonts
總用量 0
lrwxrwxrwx 1 root root 33 4月  13 01:50 graphfont.ttf -> /etc/alternatives/zabbix-web-font
[root@weixing01 ~]# ls -l /etc/alternatives/zabbix-web-font
lrwxrwxrwx 1 root root 38 4月  13 01:50 /etc/alternatives/zabbix-web-font -> /usr/share/fonts/dejavu/DejaVuSans.ttf
[root@weixing01 ~]# vi /usr/share/zabbix/include/defines.inc.php 
[root@weixing01 ~]# ls /root/SIMLI.TTF 
/root/SIMLI.TTF
[root@weixing01 ~]# ls -l !$
ls -l /root/SIMLI.TTF
-rw-r--r-- 1 root root 9223160 4月  13 22:48 /root/SIMLI.TTF
[root@weixing01 ~]# mv /root/SIMLI.TTF  /usr/share/zabbix/fonts/
[root@weixing01 ~]# cd !$
cd /usr/share/zabbix/fonts/
[root@weixing01 fonts]# ls
graphfont.ttf  SIMLI.TTF
[root@weixing01 fonts]# mv graphfont.ttf graphfont.ttf.bak ; ln SIMLI.TTF graphfont.ttf 
[root@weixing01 fonts]# ls -l
總用量 18016
-rw-r--r-- 2 root root 9223160 4月  13 22:48 graphfont.ttf
lrwxrwxrwx 1 root root      33 4月  13 01:50 graphfont.ttf.bak -> /etc/alternatives/zabbix-web-font
-rw-r--r-- 2 root root 9223160 4月  13 22:48 SIMLI.TTF
[root@weixing01 fonts]# rm -f graphfont.ttf
[root@weixing01 fonts]# ln -s SIMLI.TTF  graphfont.ttf
[root@weixing01 fonts]# ls -l
總用量 9008
lrwxrwxrwx 1 root root       9 4月  13 22:51 graphfont.ttf -> SIMLI.TTF
lrwxrwxrwx 1 root root      33 4月  13 01:50 graphfont.ttf.bak -> /etc/alternatives/zabbix-web-font
-rw-r--r-- 1 root root 9223160 4月  13 22:48 SIMLI.TTF

技術分享圖片

自動發現

技術分享圖片

zabbix配置(上)