推荐一篇很好的文章,我就不重复造轮子了,说下我在其中遇到的坑
http://www.cnblogs.com/Twobox/p/9925460.html
image.png#修改配置文件免密登录
vim /etc/my.cnf
#添加免密
skip-grant-tables
#要想 远程navicat登录要再加上这条 不然会报错
default_authentication_plugin=mysql_native_password
#修改密码 密码要复杂些 不然报错
use mysql
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'QasdfXcf5248';
#修改远程登录的ip
update user set host = '%' where user = 'root';
网友评论