繁体   English   中英

无法连接到Digital Ocean中的远程MySQL服务器

[英]Unable to connect to remote MySQL Server in Digital Ocean

我正在尝试从我的工作站连接到安装在Ubuntu 16.04上的远程MySQL服务器5.7。

这是我得到的错误(使用Navicat连接)。

在此输入图像描述

为了使其工作,我按照以下步骤。

1) GRANT ALL ON database_name.* TO user@xx.xxx.xx.xx IDENTIFIED BY 'your_password' ;

2) flush privileges;

3) sudo /etc/init.d/mysql restart

有些论坛建议评论符合“绑定地址”上启动my.cnf驻留在/etc/mysql/my.cnf 问题是我的安装没有这样的线路。

#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

#
# * IMPORTANT: Additional settings that can override those from this file!
#   The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

我还尝试使用以下命令在防火墙上打开端口。

sudo ufw allow 3306/tcp
sudo service ufw restart

但仍然坚持同样的问题。

更新:为了使MySQL能够监听所有接口,我将bind-address=0.0.0.0添加到my.cnf文件中。 现在MySQL甚至没有重启并抛出以下错误。

demo@ubuntu:~$ sudo /etc/init.d/mysql restart
[....] Restarting mysql (via systemctl): mysql.serviceJob for mysql.service failed because the control process exited with error code.
See "systemctl status mysql.service" and "journalctl -xe" for details.
 failed!
demo@ubuntu:~$

使用以下方法调试此 -

首先你需要了解日志的内容 - ubuntu中的默认日志存储在/ var / log / mysql文件夹中,或者转到/etc/mysql/my.cnf提到的位置。

其次,如果你想从任何位置访问你的mysql服务器,那么只需在开始时输入#来注释该行。 所以请说明绑定地址行。 它现在可以从任何地方访问。

[mysqld]
# bind-address=0.0.0.0

启动mysql服务器并使用ip&port从客户端系统使用telnet。 检查您是否能够连接。 为前

telnet xx.xx.xx.xx 3306

如果你能够连接然后在mysql服务器中创建用户,我在主机名中使用%,这意味着它可以从任何客户端连接

GRANT ALL ON database_name.* TO 'user'@'%' IDENTIFIED BY 'your_password';

如果仍然显示错误,那么您需要发布日志。

关于将bind-address=0.0.0.0添加到/etc/mysql/my.cnf,请确保实际添加2行:

的[mysqld]

绑定地址= 0.0.0.0

这将解决“更新”段落中的错误,并希望整个场景都能正常工作。

我有同样的问题。 并固定自己。

!includedir /etc/mysql/conf.d/

!includedir /etc/mysql/mysql.conf.d/

这意味着你应该检查conf.d和mysql.conf.d文件夹。 会有conf文件。 所以,你可以在真正的conf文件中更改bind-address。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM