X
返回
egg.js
文章信息:
- 分类:EggJs
- 阅读量:3058
- 创建时间:2022-05-15
- 更新时间:2年前
远程连接数据库 出现 Client does not support authentication protocol requested by server的解决方法
注意:服务器安装mysql root用户是可以无密码进入,用一下方式可以为mysql root用户重置密码
解决方法如下:
通过命令行进入解压的mysql根目录下。
登陆数据库 :
mysql -uroot -p
输入root的密码
Enter password: ******
更改加密方式(原样拷贝到命令窗中):
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
更改密码:该例子中 123456为新密码 :
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
刷新:
mysql> FLUSH PRIVILEGES;
评论/留言