mysql 2003 (113)

1. 问题描述
远程访问192.168.2.200主机的mysql数据库时, 出现以下错误:
[plain] view plain copy # mysql -host192.168.2.200 -uroot -p  Enter 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
依然无法解决问题, 最后在网上搜索了下, 说是系统的防火墙开启的原因.
参考了: 
1.查看配置文件: 

skip-networking #注释掉 因为它是屏蔽掉一切TCP/IP连接 

bind-address = 127.0.0.1 #它和上一个选项是异曲同工,要想远程连接,也得注释掉 

2.如果以上工作都做过还是出现: 

ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘*.*.*.*‘ (113),那就得考虑防火墙的问题了,关掉防火墙/etc/rc.d/init.d/iptables stop 

修改完后需要 restart mysql (/etc/init.d/mysql restart) 

    得到了解决方法.
现在关闭防火墙:
[plain] view plain copy # /etc/rc.d/init.d/iptables stop  iptables: Setting chains to policy ACCEPT: filter          [  OK  ]  iptables: Flushing firewall rules:                         [  OK  ]  iptables: Unloading modules:                               [  OK  ]
再次远程连接mysql数据库:
[plain] view plain copy # mysql -h192.168.2.200 -uroot -p  Enter password:   Welcome to the MySQL monitor.  Commands end with ; or \g.  Your MySQL connection id is 2962  Server 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 its  affiliates. Other names may be trademarks of their respective  owners.    Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.    mysql>





 OK, 问题解决, Enjoy it!!!
时间: 2024-10-12 16:25:24

mysql 2003 (113)的相关文章

关于 mysql 2003 客户端连接报错的处理方法

在连接到 mysql 数据库服务器时,有时会在客户端报出 2003 的错误代码,并提示: 无法连接到服务器,但服务器却可以 ping 通,可能的原因如下: 1.网络不通.检查能不能ping通. 2.防火墙设置.防火墙是否放过mysql的进程,是否屏蔽了mysql的3306端口. 3.mysql的账户设置.mysql账户是否不允许远程连接.如果无法连接可以尝试以下方法: mysql -u root -p //登录MySQL mysql> GRANT ALL PRIVILEGES ON *.* TO

linux mysql安装问题

1.rpm -qa | grep mysql   //首先检查是否安装了mysql 2.如果安装了,卸载 rpm -e mysql 3\ 下载地址 http://dev.mysql.com/downloads/mysql/ 4. 5.groupadd mysql     //可以先查看是否存在这个用户组 more /etc/group       more /et c/passwd 6\ useradd -g mysql mysql cmake -DCMAKE_INSTALL_PREFIX=/u

MySQL 二进制文件恢复

先不说话  先来一段代码块 1 mysql> show variables like 'autocommit'; 2 +---------------+-------+ 3 | Variable_name | Value | 4 +---------------+-------+ 5 | autocommit | ON | 6 +---------------+-------+ 7 1 row in set (0.00 sec) 8 9 mysql> set autocommit=0; 10

Spark:将DataFrame写入Mysql

Spark将DataFrame进行一些列处理后,需要将之写入mysql,下面是实现过程 1.mysql的信息 mysql的信息我保存在了外部的配置文件,这样方便后续的配置添加. 1 //配置文件示例: 2 [[email protected] tmp_lillcol]$ cat job.properties 3 #mysql数据库配置 4 mysql.driver=com.mysql.jdbc.Driver 5 mysql.url=jdbc:mysql://127.0.0.1:3306/data

lnmp免安装教程

1 lnmp_jtr免安装教程 2 3 export LDFLAGS="-L/zenghui/lib/zlib/lib" 4 export CFLAGS="-I/zenghui/lib/zlib/" 5 6 ./configure --prefix=/zenghui/lnmp/lib/jpeg 7 ./configure --prefix=/zenghui/lnmp/lib/zlib 8 ./configure --prefix=/zenghui/lnmp/lib/

基于maven项目的SSM整合

1.添加基本的依赖坐标(项目如需有具体别的依赖,根据实际情况添加) 1 <!-- 统一管理jar包版本 --> 2 <properties> 3 <spring.version>5.0.2.RELEASE</spring.version> 4 <slf4j.version>1.6.6</slf4j.version> 5 <log4j.version>1.2.12</log4j.version> 6 <sh

ERROR 2003 (HY000): Can&#39;t connect to MySQL server on &#39;192.168.56.105&#39; (113)

[[email protected] ~]# mysql -uroot -h192.168.56.105 -p Enter password: ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.56.105' (113) 问题的分析 出现上述问题,可能有以下几种可能 1. my.cnf 配置文件中 skip-networking 被配置 skip-networking 这个参数,导致所有TCP/IP端口没有被监听,也就是说

【转】ERROR 2003 (HY000): Can&#39;t connect to MySQL server on &#39;192.168.1.165&#39; (113)

原文转自:http://blog.csdn.net/chengyuqiang/article/details/54285857 1.程序报错: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link 2.尝试远程连接数据库: [[email protected] ~]# mysql -h192.168.1.165 -uroot -p123456 ERROR 2003 (HY000): Can't c

ERROR 2003 (HY000): Can&#39;t connect to MySQL server

一.问题的提出 /usr/local/webserver/mysql/bin/mysql -u root -h 172.29.141.112  -p -S /tmp/mysql.sockEnter password: ERROR 2003 (HY000): Can't connect to MySQL server on '172.29.141.112' (113) 二.问题的分析 出现上述问题,可能有以下几种可能 1. my.cnf 配置文件中 skip-networking 被配置 skip