sequelproで多段sshを使って接続する方法メモ
はじめに
今回やりたかったのは以下のような環境で、sequelproを使いたかった。
で、調べると.ssh/configを使えばできそうでした
・踏み台サーバー
(pcからssh接続可)
・webサーバー
(踏み台サーバーからssh接続可)
・dbサーバー
(webサーバーからmysqlクライアント接続可)
.ssh/configファイルの設定
# 踏み台サーバー Host Fumidai HostName 133.xx.xx.xx Port 22 User user_name # Webサーバー Host Web HostName 127.xx.xx.xx Port 22 User user_name ProxyCommand ssh -CW %h:%p Fumidai