使用Zabbix过程中会遇到图形界面x轴不显示时间轴的问题。这一般是Zabbix的字体及字符的原因。解决的方法是:
1.Zabbix Server安装中文字库:
查看当前zabbix的字体:
more /usr/share/zabbix/include/defines.inc.php|grep FONT
查看当前字体为graphfont.ttf。
下载新字体对原有字体进行替换:
cd /root
wget
http://down1.chinaunix.net/distfiles/ttf-arphic-uming_0.0.20050501-1.tar.gz cd /usr/share/zabbix/fonts
mv graphfont.ttf /root/
cp /root/ttf-arphic-uming_0.0.20050501/uming.ttf /usr/share/zabbix/fonts/ graphfont.ttf
2.还有一种方法是使用windows的系统字体进行替换:
从windows系统C盘的windows\Fonts\选择一种,这里选择楷体常规simkai.ttf字体。
sed -i ‘s/graphfont/simkai/g’ /usr/share/zabbix/include/defines.inc.php
换完字体后无需重启zabbix-server及zabbix-agent服务,刷新访问页面就可以生效。