gpt4 book ai didi

mysql - 错误 2002 (HY000) : Can't connect to MySQL server on '192.168.1.15' (115)

转载 作者:行者123 更新时间:2023-12-04 11:57:05 29 4
gpt4 key购买 nike

我正在尝试在我的 Raspberry Pi 4 上创建一个 MySQL 数据库,但它运行得不是很好,使用 localhost 可以完美地工作,但我想从同一互联网上的 Windows 10 计算机远程控制它。当我通过这样做创建地址为 192.168.1.15 的用户时:

sudo mysql -u root
CREATE USER 'lasse'@'192.168.1.15' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'lasse'@'192.168.1.15';
FLUSH PRIVILEGES
exit
我尝试使用这个再次登录:
mysql -u lasse -h 192.168.1.15 -ppassword // didnt work, error: ERROR 2002 (HY000): Can't connect to MySQL server on '192.168.1.15' (115)
mysql -u user -h 192.168.1.2 -P 3306 -ppassword // didnt work either, same error.
我安装了这些软件包:
mariadb-client
mariadb-server
default-mysql-server

最佳答案

ERROR 2002 是“无法连接”错误。查看/etc/my.cnf,寻找listen 行。它可能正在监听 localhost 或 127.0.0.1。您需要将其更改为监听 0.0.0.0。

关于mysql - 错误 2002 (HY000) : Can't connect to MySQL server on '192.168.1.15' (115),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64320136/

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