开启远程权限
mysql_native_password
alter user 'root'@'localhost'identified with mysql_native_password by 'Your pass word';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;
注意分号的使用,如果出现ERROR 1064 (42000): You have an error in your SQL syntax; 则尝试切换输入法(用中文输入的问题)
刷新权限
flush privileges;
还是不行。
换个思路:
准备安装phpmyadmin,参考https://www.jb51.net/article/68026.htm
在CentOS 7上:
1$ sudoyum installphpmyadmin
在CentOS 7上:
1$ sudoyum installphpmyadmin php-mcrypt
在CentOS 7上配置phpMyAdmin
默认情况下,CentOS 7上的phpMyAdmin只允许从回环地址(127.0.0.1)访问。为了能远程连接,你需要改动它的配置。
用文本编辑器打开phpMyAdmin的配置文件(路径:/etc/httpd/conf.d/phpMyAdmin.conf),找出并注释掉带有"Require
ip XXXX"字样的代码行。会有四处这样的代码行,用"Require all granted"取而代之。重新改动过的配置文件如下所示。
最后,重启httpd使改动生效
测试phpMyAdmin
测试phpMyAdmin是否设置成功,访问这个页面:http://<web-server-ip-addresss>/phpmyadmin