远程连接linux下mysql服务器

配置win下也可以连接linux下的mysql
1)直接用win7环境连接linux下的mysql,会有如下提示错误:
        ” ERROR 2003: Can't connect to MySQL server on 'localhost' (10061) ” 的错误:
         解决方法:

        修改vim /etc/mysql/my.cnf,把bind-address = 127.0.0.1注释掉(允许所有IP访问)

2)再试用win7环境连接linux下的mysql,还会有如下提示错误:
        ” ERROR 1130 (HY000): Host ‘xxxx’ is not allowed to connect to this MySQL server ” 的错误:
        解决方法:
         mysql -u root -p vmware #在linux下进入mysql
mysql > use mysql;
    mysql > update user set host = '%' where user = 'root' ;
    mysql > flush privileges;

        可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “host” 项,从”localhost”改称”%”

3)然后启动MySQL服务,或者在启动服务的前提下重启服务

    sudo /etc/init.d/mysql start (脚本启动)或者service mysqld start(命令启动)                                 

    sudo /etc/init.d/mysql restart(脚本重启)或者 service mysqld restart(命令重启) 

完成这一步,就实现在win下访问linux的mysql。

远程连接linux下mysql服务器_第1张图片


你可能感兴趣的:(数据库)