mysql - 无法通过 SSH 在 R 中连接到 MySQL 服务器

标签 mysql r ssh r-dbi

背景

我正在尝试从云 MySQL 服务器中提取数据。我只是将数据库从共享服务器移动到专用云服务器。在旧位置一切正常。新位置需要 SSH 隧道。

研究/信息:

我发现的所有相似之处是 this SO article .它并不适用,因为我从未使用过本地主机。

可以在 Sequel Pro 和 MySQL Workbench 中使用相同的凭据成功连接,但我无法让 R 脚本发挥作用。

可以在命令行中连接到 mysql。

没有在本地安装了 mysql。 (除非它随 High Sierra 一起提供;我不知道。无论如何,如果有本地 MySQL 实例,它就不会运行。)

代码:

这是失败的原因:

con <- dbConnect(RMariaDB::MariaDB(),
                 user = 'soundings_app',
                 password = keyringr::decrypt_kc_pw("Soundings_app"),
                 host = '127.0.0.1',
                 port = 3306,
                 dbname='UFO')

我也试过使用实际密码作为字符串,但得到了同样的错误。

错误信息

Error in connection_create(host, username, password, dbname, as.integer(port),  : 
  Failed to connect: Can't connect to MySQL server on '127.0.0.1' (57)

我唯一的猜测

我唯一能想到的是 SequelPro 和 Workbench 都有一个地方可以输入我的私钥位置 (~/.ssh)。

你能解释一下我做错了什么吗?

更新

我将主机添加到我的 ./ssh/config 文件中,如下所示:

Host XXX.XXX.130.0
  LocalForward 3306 localhost:3306

这导致我的其他连接失败,所以我删除了它。但是当我尝试连接仍然存在的 ~/.ssh/config 时,Sequel Pro 给了我以下信息:

Used command:  /usr/bin/ssh -v -N -S none -o ControlMaster=no -o ExitOnForwardFailure=yes -o ConnectTimeout=10 -o NumberOfPasswordPrompts=3 -i /Users/steves2018air/.ssh/id_rsa -o TCPKeepAlive=no -o ServerAliveInterval=60 -o ServerAliveCountMax=1 ubuntu@XXX.XXX.130.0 -L 49700:127.0.0.1:3306

OpenSSH_7.6p1, LibreSSL 2.6.2
debug1: Reading configuration data /Users/steves2018air/.ssh/config
debug1: /Users/steves2018air/.ssh/config line 1: Applying options for XXX.XXX.130.0
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 48: Applying options for *
debug1: Control socket " none" does not exist
debug1: Connecting to XXX.XXX.130.0 [XXX.XXX.130.0] port 22.
debug1: fd 3 clearing O_NONBLOCK
debug1: Connection established.
debug1: identity file /Users/steves2018air/.ssh/id_rsa type 0
debug1: key_load_public: No such file or directory
debug1: identity file /Users/steves2018air/.ssh/id_rsa-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.4
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.4 pat OpenSSH* compat 0x04000000
debug1: Authenticating to XXX.XXX.130.0:22 as 'ubuntu'

更新二

一时兴起,我尝试将主机从“127.0.0.1”更改为“localhost”,只是想看看会发生什么,以及是否有任何启示。略有不同的错误:

Error in connection_create(host, username, password, dbname, as.integer(port),  : 
  Failed to connect: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

仍然没有解决方案或解释——你能帮忙吗?

最佳答案

这花了我很长时间,但我是这样解决的:

我把这个添加到/etc/mysql/.my.cnf:

[destination]
 user=`username`
 port=3308
 proto=TCP

然后我使用以下方法连接到云服务器:

ssh ubuntu@xxx.xxx.xxx.x -L 3308:127.0.0.1:3306

我可以在 R 之外的终端窗口中运行它,或者我可以在 RStudio 的终端窗口中运行它——无论哪种方式,都可以执行以下操作:

con <- dbConnect(RMariaDB::MariaDB(),
                 user = '`username`',
                 password = decrypt_kc_pw("`pw_profile_name`"),
                 groups = "destination",
                 default.file = "/etc/mysql/.my.cnf",
                 host = '127.0.0.1',
                 port = 3308,
                 dbname='`db_name`')

关于mysql - 无法通过 SSH 在 R 中连接到 MySQL 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49257988/

相关文章:

mysql - CONCAT_WS 忽略的分隔符选择(mysql/mariadb)

r - 在 ggplot2 中控制具有多个几何图形的视觉对象的绘图顺序

R Shiny with Leaflet - 单击后更改标记的颜色

r - 如何在拼凑而成的图形中调整带有plot_annotation标签的字体样式?

git - Git .ssh 的默认路径是什么?

MySQL-在选择中获取每个月的平均值

MySQL 表索引

mysql - 应该等效的两个查询返回不同的结果

configuration - 如何修复在 gitlab 中创建新仓库后给出的 URL?

php - 如何使用PHP分别运行2个SSH命令?