现象:
配置zabbix告警动作时,出现以下错误:
Error in query [INSERT INTO auditlog (userid,clock,ip,action,resourcetype,details,auditid) VALUES (‘1‘,‘1562247337‘,‘123.155.146.109‘,‘0‘,‘5‘,‘名称: gaojing‘,‘1018‘)] [Incorrect string value: ‘\xE5\x90\x8D\xE7\xA7\xB0...‘ for column ‘details‘ at row 1]
问题:
是mysql中字符问题,latin1不可以
解决:
先将数据导出,vim 编辑 creat.sql,一般模式下将 latin1 全局替换为 utf8
[[email protected] ~]# mysqldump -uroot -p123456 --default-character-set=utf8 zabbix > zabbix.sql
Warning: Using a password on the command line interface can be insecure.
[[email protected] ~]# vim !$
vim zabbix.sql
:1,$s/latin1/utf8/g
[[email protected] ~]# mysql -uroot -p123456 --default-character-set=utf8 zabbix < zabbix.sql
Warning: Using a password on the command line interface can be i
之后再重新添加就可以了
问题解决!!!
其实还可以直接将 Report problems to Zabbix administrators 启用即可
原文地址:https://blog.51cto.com/11530642/2417274
时间: 2024-11-13 12:17:54