Ssh
如何在不使用 mysqlDump 的情況下轉儲遠端數據庫
我有一個類似的問題來自這個問題如何在沒有 mysqldump 的情況下轉儲遠端數據庫?
當我跑步時
ssh -f L 3306:localhost:3306 user@remoteserver -N
我收到以下錯誤
bind: Address already in use channel_setup_fwd_listener: cannot listen to port: 3306 Could not result local forwarding
您可能已經在執行使用埠 3306 的本地 MySQL 伺服器。
您可以像這樣更改隧道的本地埠:
ssh -f -L 33306:localhost:3306 user@remoteserver -N
但當然,您必須將本地工具指向埠 33306。