1. 乱码如下图
zabbix乱码
2. 解决zabbix乱码方法
2.1 上传文件到zabbix中
找到本地C:[Windows](http://www.ttlsa.com/windows/ "windows")\Fonts\simkai.ttf(楷体)上传到服务器zabbix网站目录fonts目录下。
zabbix中文字体
zabbix楷体
2.2 修改zabbix php配置文件
<textarea wrap="soft" class="crayon-plain print-no" data-settings="dblclick" style="box-sizing: border-box; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px !important; font-family: Monaco, MonacoRegular, "Courier New", monospace !important; color: rgb(0, 0, 0); line-height: 15px !important; background: rgb(255, 255, 255); width: 699.391px; overflow: auto; padding: 0px 5px; margin: 0px; height: 30px; position: absolute; opacity: 0; border: 0px; border-radius: 0px; box-shadow: none; white-space: pre; overflow-wrap: normal; resize: none; tab-size: 4; z-index: 0;"></textarea>
|
1
2
|
# cd /data/site/www.ttlsa.com/zabbix/ # 我zabbix安装目录
# sed -i 's/DejaVuSans/simkai/g' ./include/defines.inc.php
|
3.** 查看zabbix乱码处理结果**
zabbix中文乱处理结果
4. 常见问题
依旧乱码:通过以上的操作,大部分同学的乱码问题解决了,但是依旧有一些同学还是乱码?细心的群友提供另外一种情况:初始化数据库的时候未使用utf8编码所致.初始化数据库使用命令
<textarea wrap="soft" class="crayon-plain print-no" data-settings="dblclick" style="box-sizing: border-box; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px !important; font-family: Monaco, MonacoRegular, "Courier New", monospace !important; color: rgb(0, 0, 0); line-height: 15px !important; background: rgb(255, 255, 255); width: 699.391px; overflow: auto; padding: 0px 5px; margin: 0px; height: 15px; position: absolute; opacity: 0; border: 0px; border-radius: 0px; box-shadow: none; white-space: pre; overflow-wrap: normal; resize: none; tab-size: 4; z-index: 0;"></textarea>
|
1
|
create database zabbix default charset utf8;
|