gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 15:44:41 25 4
gpt4 key购买 nike

我在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.0beer@beer-laptop# mysql -ubeer -pbeer -h192.168.1.100ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.100' (111)beer@beer-laptop# mysql -ubeer -pbeer -hlocalhostWelcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 160Server 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.1Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 161Server 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.100ERROR 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

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

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com