Kill SSH Port Forwarding

A small wiki to kill an SSH port forwarding process running in the background.

If you are using Linux you can kill the process by:

ps aux | grep ssh

and then use

kill <id>

To kill the process. If the kill command is not successful you can try

kill -9 <id>

Last updated