故障报错:报没有权限,点击login没反应

zabbix登陆拒绝报没有权限_登陆报

解决方法:

去除权限

mysql> select authentication_type from config;
+---------------------+
| authentication_type |
+---------------------+
|                   2 |
+---------------------+
1 row in set (0.00 sec)

mysql> update config set authentication_type=0;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0


登陆数据库,将验证类型改为0

从新登陆,完美解决

zabbix登陆拒绝报没有权限_登陆报_02