trimstray / multitor

Create multiple TOR instances with a load-balancing.
GNU General Public License v3.0
1.02k stars 174 forks source link

Stop multitor processes: kill param #6

Closed puzanov closed 6 years ago

puzanov commented 6 years ago

Hey

Thanks for the tool. Nice to have one.

How to gracefully stop multitor? Cannot find the command in help

trimstray commented 6 years ago

Hi!

There is no such option but you can deal with it in a simple way:

# for i in multitor haproxy polipo ; do pkill -f "$i" ; done
# netstat -tapn | grep LISTEN | grep "tor\|haproxy\|polipo"

However, I will add this in the next version.

Thx!

puzanov commented 6 years ago

thanks