我不断尝试使用 POPSQL 连接到我的 MySQL 数据库,并且不断收到错误代码 ECONNREFUSED(错误连接被拒绝)MYIP:3306,我不知道为什么。设置如下:
我在 Cent OS 上运行 Plesk,它使用 MySQL DB (Maria),我通常使用 Plesk 界面使用 PHPMyAdmin 连接到该数据库。
现在我正在尝试使用此 POPSQL 连接到它,但我无法使用任何应用程序进行远程连接。
我的故障排除:
1:重启服务器:多次,每次更改后。
2:检查防火墙:它已启用,正在运行,并且端口 3306 已打开(我也尝试通过 SSH 连接,我可以在终端中进行连接,但不能使用 POPSQL 或任何其他 SQL 连接软件)
3:检查 Plesk 配置:凭据正确,允许通过任何主机Plesk DB 配置进行远程连接
4:检查Maria config,绑定地址是0.0.0.0而不是127.0.0.1
[mysqld]
bind-address = 0.0.0.0
local-infile=0
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
我对数据库故障排除的知识到此为止,因此,如果您对正在发生的事情以及如何修复它有任何想法或建议,请告诉我。再说一次,我对这一切都很陌生,所以我确信这只是一个简单的错误,但多加一双眼睛会非常有帮助。