I have a script with a long execution time. Apache is using php_mod.
I start the process in the browser ( open the url ). I close the browser and the process is still running.
How can I find the apache process and stop it (linux os )
From serverfault
-
How can I find the apache process and stop it (linux os )
If you know you ip, find apache process PID:
netstat -anp | grep 10.1.1.1 | grep \:80 tcp 0 0 127.0.0.1:80 10.1.1.1:48125 ESTABLISHED 7191/apache2
And kill it:
kill 7191
: Are you sure? It's not working...: It works.Perfect.From bindbn
0 comments:
Post a Comment