标签:with 通过 col string follow ati native ges com
原因是MySQL8.0版本的加密方式和MySQL5.0的不一样,连接会报错。
1.先通过命令行进入mysql的root账户:
C:\Windows\system32> mysql -uroot -p
2.更改加密方式:
ALTER
USER
‘root‘
@
‘localhost‘
IDENTIFIED
BY
‘password‘
PASSWORD
EXPIRE NEVER;
3.更改密码:root1234为新密码
ALTER
USER
‘root‘
@
‘localhost‘
IDENTIFIED
WITH
mysql_native_password
BY
‘root1234‘
;
4.刷新:
FLUSH
PRIVILEGES
;
标签:with 通过 col string follow ati native ges com
原文地址:https://www.cnblogs.com/cn-chy-com/p/12310594.html