zabbix登陆拒绝报没有权限
故障报错:报没有权限,点击login没反应解决方法:
去除权限
1
2
3
4
5
6
7
8
9
10
11
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: 1Changed: 1Warnings: 0
登陆数据库,将验证类型改为0
从新登陆,完美解决
页:
[1]