mysql5.7登陆时access denied解决办法
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YSE)
windowns环境下:
- net stop mysql
- 进入mysqld.exe的路径,mysqld -nt –skip-grant-tables
- mysql -u root -p直接进入mysql
- update mysql.user set authentication_string=password(‘123qwe’) where user=’root’。mysql5.7里password选项改成了authentication_string。
- flush privileges;
- quit
- 杀掉进程管理器里的mysqld、mysql进程。
- 启动mysql正常登陆