mysql - 无法连接MySQL服务器错误111

标签 mysql linux mysql-error-2003

我在linux机器上安装了mysql服务器IP = 192.168.1.100但是当我尝试连接到这个IP时它总是错误(111)。但使用 localhost 和 127.0.0.1 就可以了。

beer@beer-laptop# ifconfig | grep "inet addr"
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet addr:192.168.1.100  Bcast:192.168.1.255  Mask:255.255.255.0

beer@beer-laptop# mysql -ubeer -pbeer -h192.168.1.100
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.100' (111)

beer@beer-laptop# mysql -ubeer -pbeer -hlocalhost
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 160
Server version: 5.1.31-1ubuntu2 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> 

beer@beer-laptop# mysql -ubeer -pbeer -h127.0.0.1
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 161
Server version: 5.1.31-1ubuntu2 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> 

从另一台机器连接也出现错误 111。

another@another-laptop# mysql -ubeer -pbeer -h192.168.1.100
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.100' (111)

在这种情况下使用 localhost/127.0.0.1 和 192.168.1.100 之间有什么区别。 我不知道如何从另一台机器连接到该数据库。

请帮忙。 谢谢。

最佳答案

这可能意味着您的 MySQL 服务器仅监听本地主机接口(interface)。

如果你有这样的行:

bind-address = 127.0.0.1

在您的 my.cnf configuration file 中,您应该注释它们(在行的开头添加#),然后重新启动 MySQL。

sudo service mysql restart

当然,要执行此操作,您必须是服务器的管理员。

关于mysql - 无法连接MySQL服务器错误111,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18691628/

相关文章:

mysql - 使用 LIMIT 时,在 MySQL 中使用 UNION ALL 获取单个 SELECT 语句的结果行数

mysql - 尝试连接到远程 MySQL 主机(错误 2003)

mysql - 如何理解 "can' t connect”mysql错误信息?

mysql - 从命令行访问mysql远程数据库

php - 如果在 codeigniter 中批量查询失败,则继续执行查询

mysql - 查询以找出 View 中使用的表

mysql - 如何编写 SQL 查询以将两个表与映射表连接起来并获得每个结果只有一行的格式化输出?

linux - 将文件从列表复制到文件夹

java - ArchLinux - 使用 pacman -S 安装最新的 JDK

python - 如何选择列表框中的多个项目?