Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
1,在Linux,先进入/etc,修改my.cnf,任意一行加上"skip-grant-tables"。
2,重启MySQL:service mysqld restart
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。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 (这步可以省略)

更多精彩