zabbix 解决中文字符集乱码

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
如果不行的话更改阿里的epel源:wget -P  /etc/yum .repos.d/ http: //mirrors .aliyun.com /repo/epel-6 .repo  
在zabbix服务器端安装开源的字符集
[root@lb01 ~] # yum -y install  wqy-microhei-fonts
[root@lb01 ~] # rpm -ql wqy-microhei-fonts
/etc/fonts/conf .d /65-0-wqy-microhei .conf
/usr/share/doc/wqy-microhei-fonts-0 .2.0
/usr/share/doc/wqy-microhei-fonts-0 .2.0 /LICENSE_Apache2 .txt
/usr/share/doc/wqy-microhei-fonts-0 .2.0 /LICENSE_GPLv3 .txt
/usr/share/doc/wqy-microhei-fonts-0 .2.0 /README .txt
/usr/share/fontconfig/conf .avail /65-0-wqy-microhei .conf
/usr/share/fonts/wqy-microhei
/usr/share/fonts/wqy-microhei/wqy-microhei .ttc
[root@lb01 ~]
[root@lb01 ~] # ll   /etc/alternatives/zabbix-web-font    ##zabbix默认的字符集
lrwxrwxrwx 1 root root 38 May 30 17:13  /etc/alternatives/zabbix-web-font  ->  /usr/share/fonts/dejavu/DejaVuSans .ttf
[root@lb01 ~] #                                                                   #删除默认软连接指向的字符集,指向安装的字符集
[root@lb01 ~] # rm -f /etc/alternatives/zabbix-web-font
[root@lb01 ~] # ln -s /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /etc/alternatives/zabbix-web-font
[root@lb01 ~] # ll   /etc/alternatives/zabbix-web-font 
lrwxrwxrwx 1 root root 46 May 30 22:12  /etc/alternatives/zabbix-web-font  ->  /usr/share/fonts/wqy-microhei/wqy-microhei .ttc
[root@lb01 ~]
 
不要忘记重启zabbix-server
 
 
第二种方法
C:\Windows\Fonts  windows字符集考出来一个
  /usr/share/zabbix/fonts    zabbix的字符集
[root@zabbix-server fonts] # ls
graphfont.ttf
[root@zabbix-server fonts] #  
  [root@zabbix-server fonts] # ls
graphfont.ttf  STZHONGS.TTF
[root@zabbix-server fonts] # \mv STZHONGS.TTF   graphfont.ttf
[root@zabbix-server fonts] # systemctl  restart  zabbix-server 
[root@zabbix-server fonts] #









本文转自 小小三郎1 51CTO博客,原文链接:http://blog.51cto.com/wsxxsl/1903213,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
监控 Windows
Zabbix 5.0 LTS配置中文支持并解决字符乱码问题
文章介绍了如何在Zabbix 5.0 LTS中配置中文支持并解决字符乱码问题,包括在用户设置中选择中文语言和替换默认字体为Windows字体的步骤。
332 4
|
监控 Linux
zabbix中文显示乱码解决
zabbix自带了‘DejaVuSans.ttf’字体文件,但无法显示中文,如图: 可以在linux系统中安装中文字体 [root@localhost etc]# yum install google-noto-sans-cjk-fonts.
1251 0