mysql5.7 明明已经设置好密码,但还是提示要设置重置密码:
错误:You must reset your password using ALTER USER statement before executing this statement.
解决办法:
step 1: SET PASSWORD = PASSWORD(‘your new password‘);
step 2: ALTER USER ‘root‘@‘localhost‘ PASSWORD EXPIRE NEVER;
step 3: flush privileges;