gpt4 book ai didi

mysql - 如何关闭这个 ssh 隧道?

转载 作者:IT老高 更新时间:2023-10-28 12:52:15 26 4
gpt4 key购买 nike

我按照这篇文章的描述打开了一个 ssh 隧道:Zend_Db: How to connect to a MySQL database over SSH tunnel?

但现在我不知道我到底做了什么。此命令会影响服务器上的任何内容吗?以及如何关闭这个隧道,因为现在我无法正常使用我的本地mysql。

我使用 OSX Lion,服务器在 Ubuntu 11.10 上运行。

最佳答案

假设您运行了以下命令:ssh -f user@mysql-server.com -L 3306:mysql-server.com:3306 -N如您链接的帖子中所述。

命令分解:

  1. ssh : 这很不言自明。调用 ssh .
  2. -f : (来自 man ssh 页面)

    Requests ssh to go to background just before command execution. This is useful if ssh is going to ask for passwords or passphrases, but the user wants it in the background.

    基本上,发送 ssh输入任何密码以建立连接后进入后台;它会在 localhost 处将 shell 提示返回给您而不是让您登录 remote-host .

  3. user@mysql-server.com :您要登录的远程服务器。
  4. -L 3306:mysql-server.com:3306 : 这是有趣的一点。 -L (来自 man ssh 页面):

    [bind_address:]port:host:hostport Specifies that the given port on the local (client) host is to be forwarded to the given host and port on the remote side.

    所以 -L 3306:mysql-server.com:3306绑定(bind)本地端口3306远程端口 3306在主机 mysql-server.com .

    当您连接到 本地 端口时 3306 ,连接通过安全通道转发到 mysql-server.com . 远程主机mysql-server.com然后连接到 mysql-server.com在端口 3306 .

  5. -N : 不要执行命令。这对于“仅转发端口”(引用手册页)很有用。

Does this command affect anything on the server?

是的,它在 localhostmysql-server.com 之间的端口 3306 上建立了连接。

And how do I close this tunnel...

如果您使用过 -f ,您会注意到 ssh你已经打开了后台的过程。关闭它的更好方法是运行 ps aux | grep 3306 , 找到 pidssh -f ... -L 3306:mysql-server.com:3306 -N , 和 kill <pid> . (或者也许 kill -9 <pid> ;我忘记了 kill 是否有效)。这具有杀死所有其他ssh的美丽好处连接;如果您有多个,重新建立它们可能会有点……痛苦。

... because now I can't use my local mysql properly.

这是因为您有效地“捕获”了本地 mysql处理并转发任何试图连接到它的流量,关闭到 remote mysql过程。 更好的解决方案是在端口转发中不使用本地端口 3306。使用未使用的东西,例如 33060。(数字越大通常使用较少;端口转发这样的组合很常见:“2525->25”、“8080->80”、“33060->3306”或类似。使内存稍微容易一些)。

所以,如果您使用 ssh -f user@mysql-server.com -L 33060:mysql-server.com:3306 -N ,然后将 Zend connect-to-mysql 函数指向 localhost在端口 33060 ,它将连接到 mysql-server.com在端口 3306 .您显然仍然可以连接到 localhost在端口 3306 , 所以你仍然可以使用本地的 mysql服务器。

关于mysql - 如何关闭这个 ssh 隧道?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9447226/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com