MySQL Front远程连接数据库
连接前需要先配置一下服务器端的数据库
进入mysql数据库,选择mysql
mysql> use mysql;
选择 host 表
mysql> select host from user;
更新 host, 然后退出。
mysql> update user set host = '%' where user='root';
重启数据库, 完成。
# service mysqld restart
本文来自博客园,作者:两小无猜,转载请注明原文链接:https://www.cnblogs.com/charlottepl/p/12655849.html