我有一个 bash 脚本,它创建 ssh 隧道以安全地连接远程 mysql 服务器,如下所示。
ssh -f -N -L $LOCAL_PORT:localhost:3306 $REMOTE_USER@$REMOTE_IP
mysql -P $LOCAL_PORT -h 127.0.0.1 -u lapl_stg -p${REMOTE_DB_PASS} < ./t1.sql > ./out.txt
在 bash 脚本中打开 ssh 隧道后,在退出 bash 脚本时,我注意到 ssh 隧道子进程仍然存在。
脚本退出后,如果你做netstat,它显示如下。
netstat -a -n -p -l
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:3308 0.0.0.0:* LISTEN 6402/ssh
tcp 0 0 10.44.44.11:46836 10.44.44.21:22 ESTABLISHED 6402/ssh
tcp6 0 0 ::1:3308 :::* LISTEN 6402/ssh
如何优雅地终止 ssh 子进程(6402)以在脚本中进行清理?我考虑过使用“killall ssh”,但它可能会杀死其他人意外创建的其他 ssh 进程。
谢谢你。