我正在尝试远程连接到 MariaDB 5.5 服务器,我得到:
无法连接到“192.168.1.1”上的 MySQL 服务器 (111)
(其中 192.168.1.1 代表公共 IPv4)。
我不明白为什么,因为没有限制(即 MySQL 端、iptables/firewalld 等)。
任何想法将不胜感激。
MariaDB [(none)]> SHOW GLOBAL VARIABLES like 'bind_address';
Empty set (0.00 sec)
MariaDB [(none)]> select user,host from mysql.user where user='root';
+------+-----------+
| user | host |
+------+-----------+
| root | % |
| root | 127.0.0.1 |
| root | ::1 |
+------+-----------+
3 rows in set (0.00 sec)
MariaDB [(none)]>
[root@rdns1 ~]# ss -lntp | grep 3306
LISTEN 0 50 *:3306 *:* users:(("mysqld",pid=16254,fd=14))
[root@rdns1 ~]#