zabbix中文字符乱码问题,三种解决办法总结。总有一种方法适合你
Posted cheyunhua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix中文字符乱码问题,三种解决办法总结。总有一种方法适合你相关的知识,希望对你有一定的参考价值。
乱码问题解决办法
方法一:替换字体
修改zabbix的web前端 vim /www/html/zabbix/include/defines.inc.php
将DejaVuSans替换为simkai,一共有两处
define(‘ZBX_FONT_NAME‘, ‘DejaVuSans‘);
define(‘ZBX_GRAPH_FONT_NAME‘, ‘DejaVuSans‘);
把 DejaVuSans 替换为 simkai
define(‘ZBX_FONT_NAME‘, ‘simkai‘);
define(‘ZBX_GRAPH_FONT_NAME‘, ‘simkai‘)
- 1
- 2
感觉这个方法还是不行,那就看方法二
方法二:修改数据库编码
由于 mysql 数据库的字符集格式,我们默认使用的字符集为 utf8,而 mysql 里的字符集为 latin1;在创建数据库的时候没有指定为 UTF8 的格式,也是会造成乱码的问题出现。
# mysqldump -uzabbix -p zabbix > /tmp/zabbix.sql
# sed -i ‘s/latin1/utf8/‘ /tmp/zabbix.sql
把原来的数据库删除,创建新的 zabbix 数据库
# mysqladmin -uzabbix -p drop zabbix
Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.
Do you really want to drop the ‘zabbix‘ database [y/N] y
Database "zabbix" dropped
# mysql -uzabbix -p
mysql> create database zabbix create character set utf8;
# mysql -uroot -predhat zabbix < /tmp/zabbix.sql
没有觉得以上两种方法还是解决不了问题,那就参照方法三
方法三:修改 PHP 文件
第一种:重新编译安装php,禁用-enable-gd-jis-conv选项,这种方式代价较大;
第二种:就是修改php代码:
1、在include/gaphs-inc.php文件中找到imagettftext()这个函数;
2、找到文件后将一下这段php代码复制到该文件中,对应 imagettftext() 这个函数的下面添加:
function to_entities($string){
$len = strlen($string);
$buf = "";
for($i = 0; $i < $len; $i++){
if (ord($string[$i]) <= 127){
$buf .= $string[$i];
} else if (ord ($string[$i]) <192){
//unexpected 2nd, 3rd or 4th byte
$buf .= "?";
} else if (ord ($string[$i]) <224){
//first byte of 2-byte seq
$buf .= sprintf("&#%d;",
((ord($string[$i + 0]) & 31) << 6) +
(ord($string[$i + 1]) & 63)
);
$i += 1;
} else if (ord ($string[$i]) <240){
//first byte of 3-byte seq
$buf .= sprintf("&#%d;",
((ord($string[$i + 0]) & 15) << 12) +
((ord($string[$i + 1]) & 63) << 6) +
(ord($string[$i + 2]) & 63)
);
$i += 2;
} else {
//first byte of 4-byte seq
$buf .= sprintf("&#%d;",
((ord($string[$i + 0]) & 7) << 18) +
((ord($string[$i + 1]) & 63) << 12) +
((ord($string[$i + 2]) & 63) << 6) +
(ord($string[$i + 3]) & 63)
);
$i += 3;
}
}
return $buf;
}
将以上代码添加到 zabbix/include 下的 graphs-inc.php 文件中,之后依次修改该文件中的imagettftext()函数
将最后一个 $string 参数修改为 to_entities($string)
修改样式参照图如下:
至此不用重启服务就会发现zabbix的图表已经可以正确显示中文了
以上是关于zabbix中文字符乱码问题,三种解决办法总结。总有一种方法适合你的主要内容,如果未能解决你的问题,请参考以下文章