centos6下解决"ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.2.200' (113)"

来源:互联网 发布:excel从网页导入数据 编辑:程序博客网 时间:2024/06/14 02:35
1. 问题描述
远程访问192.168.2.200主机的mysql数据库时, 出现以下错误:
# mysql -host192.168.2.200 -uroot -pEnter password: ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.2.200' (113)
2. 解决方法
首先确保mysql开启了远程授权: http://blog.csdn.net/cryhelyxx/article/details/40114695
参考了: http://blog.csdn.net/qustdjx/article/details/26937325
依然无法解决问题, 最后在网上搜索了下, 说是系统的防火墙开启的原因.
参考了: http://www.jb51.net/article/23965.htm   得到了解决方法.
现在关闭防火墙:
# /etc/rc.d/init.d/iptables stopiptables: Setting chains to policy ACCEPT: filter          [  OK  ]iptables: Flushing firewall rules:                         [  OK  ]iptables: Unloading modules:                               [  OK  ]
再次远程连接mysql数据库:
# mysql -h192.168.2.200 -uroot -pEnter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 2962Server version: 5.5.22-log MySQL Community Server (GPL)Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> 
 
 
 
 
 
 OK, 问题解决, Enjoy it!!!
                                             
0 0
原创粉丝点击