故障报错:报没有权限,点击login没反应
解决方法:
去除权限
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
从新登陆,完美解决
时间: 2024-10-14 12:01:02