Centos Mysql 命令登录报错
2018-04-12 本文已影响0人
M_ENG
Access denied for user 'root'@'localhost' (using password: YES)
1.使用root用户为无密码登录
修改 /etc/my.cnf
在【mysqld】和【mysqld】之间添加:skip-grant-tables
重启Mysql
2.命令登录:mysql -u root -p
不用输入密码直接回车进入mysql
3.update user SET password = PASSWORD('new_pass') WHERE user = 'root';
4.flush privileges;
5.exit; 重启Mysql