mysql ssh隧道(然后杀死PID)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql ssh隧道(然后杀死PID)相关的知识,希望对你有一定的参考价值。
PRODUCTION_PORT=33006 PRODUCTION_SERVER_AUTH=root@0.0.0.0.0 #connect to the tunnel and put the connection to the background ssh -f -N -L $PRODUCTION_PORT:localhost:3306 $PRODUCTION_SERVER_AUTH ... ... #Find the PID of the ssh tunnel in the background and assign it to a variable PID=$(ps -eo pid,args | grep 'ssh -f -N -L 33006:localhost' | grep -v 'grep' | cut -c1-6) #kill the tunnel kill -9 $PID
以上是关于mysql ssh隧道(然后杀死PID)的主要内容,如果未能解决你的问题,请参考以下文章