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

我在 linux 机器 IP = 192.168.1.100 上安装了 mysql 服务器,但是当我尝试连接到此 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 服务器只是在监听 localhost 接口(interface)。

如果你有这样的行:

bind-address = 127.0.0.1

在您的my.cnf configuration file ,你应该注释它们(在行首添加一个#),然后重启MySQL。

sudo service mysql restart

当然,要做到这一点,你必须是服务器的管理员。

https://stackoverflow.com/questions/1420839/

相关文章:

linux - 在 linux 中显示磁盘事件的类似 htop 的工具

Python 函数属性 - 使用和滥用

python - Python中的退出代码

python - 在 Python 中创建具有初始容量的列表

linux - 如何阅读 shell 命令的源代码?

python - 如何为类对象创建自定义字符串表示?

linux - 什么是不间断进程?

linux - 在 SSH session 中查找客户端的 IP 地址

python - 遍历列表中的每两个元素

linux - 在一行中从 linux 终端发送邮件