centos7.2下解决用Mysql 使用navicate远程连接数据库出现1045 access denied for user 'root'@'localhost' using password yes

在mysql命令行中执行
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456'); 
GRANT ALL PRIVILEGES ON *.* TO 'root' @'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
flush privileges;
 
若以上方法行不通则用:
use mysql; 
UPDATE user SET Password=PASSWORD('123456') where USER='root';
flush privileges;  
 
以上是别人的方法,我使用第二个顺利的解决了问题
转至:http://blog.csdn.net/ocupid/article/details/53947202
原文地址:https://www.cnblogs.com/elysian/p/7116458.html