I started a Dancer/Starman server using:
sudo plackup -s Starman -p 5001 -E deployment --workers=10 -a mywebapp/bin/app.pl
but I'm unsure how I can stop the server. Can someone provide me with a quick way of stopping it and all the workers it has spawned?
Use the
and you can kill the process based on his
PIDSo, using the above options, you can use
the
pid.filesimply stores the master's PID - don't need analyze thepsoutput...