Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法

时间:2022-05-17 19:13:49

1,在Linux,先进入/etc,修改my.cnf,任意一行加上"skip-grant-tables"。

2,重启MySQL:service mysqld restart

3,use mysql;

update mysql.user set authentication_string=password('your new password') where user='root';

4,flush privileges;

 

        exit;
5,重启MySQL:service mysqld restart  (这步可以省略)