Linux MySQL报错: Access denied for user 'zabbix'@'localhost' (using password: YES)

原因: 原来我进行 数据库赋权时语句写的不对

grant all priviledges on zabbix.* to 'zabbix'@'%' identified by 'Password';

我写成了

grant all priviledges on zabbix.* to 'zabbix@*' identified by 'Password'

原文地址:https://www.cnblogs.com/1q94/p/13884698.html