mariadb 拒绝与家庭网络中的笔记本电脑连接
mariadb refuses connection with laptop in home network
我在 Raspberry pi 上安装了 MariaDB 运行。我通过电缆连接的台式机可以访问和操作数据,但我的笔记本电脑得到:
OperationalError: (1045, "Access denied for user 'root'@'192.168.0.18' (using password: YES)")
我修改了my.cnf以涉及:
skip-networking=0
skip-bind-address
并配置 mysql.user 监听 192.168.0.%:
MariaDB [(none)]> select user, host from mysql.user where host <> 'localhost'
-> ;
+------+---------------+
| user | host |
+------+---------------+
| root | 192.168.0.% |
+------+---------------+
为什么我仍然被拒绝? (我在 Raspberry Pi 上没有防火墙 运行)
很可能,连接被拒绝是因为您输入了错误的密码。
"Access denied for user 'root'@'192.168.0.18' (using password: YES)",该消息来自服务器。
我在 Raspberry pi 上安装了 MariaDB 运行。我通过电缆连接的台式机可以访问和操作数据,但我的笔记本电脑得到:
OperationalError: (1045, "Access denied for user 'root'@'192.168.0.18' (using password: YES)")
我修改了my.cnf以涉及:
skip-networking=0
skip-bind-address
并配置 mysql.user 监听 192.168.0.%:
MariaDB [(none)]> select user, host from mysql.user where host <> 'localhost'
-> ;
+------+---------------+
| user | host |
+------+---------------+
| root | 192.168.0.% |
+------+---------------+
为什么我仍然被拒绝? (我在 Raspberry Pi 上没有防火墙 运行)
很可能,连接被拒绝是因为您输入了错误的密码。 "Access denied for user 'root'@'192.168.0.18' (using password: YES)",该消息来自服务器。