views:

23

answers:

1

I created a php script that has ignore_user_abort(true); in it, and it is running in infinite loop... I closed the webpage, apache server and the browser too.. Its running like a armageddon now.. Nothing seems to stop it.. how do I stop it ?? What does it run as (process name) in windows ?? I searched for terms related to php or server or browser.. nothing seems to hit..

How do I "kill" the process now ??

A: 

http://www.mywebref.com/Code_Helper/pages/40.html seems to explain this nicely.

  1. SSH into the server
  2. Type in ps x
  3. See the list of processes currently on your server
  4. Get the PID(process id) from that list and type kill xxxxx

That should do it.

Thank you to the guy that posted that by the way. Now I now too. :)

etbal
Just to clarify the 'xxxxx' above is the PID! I'd also suggest using kill -9 xxxxx
Nev Stokes
Just to clarify: all of the above applies to linux
Mchl
You are welcome :) he he :) anyway, I am not the admin on the server, and I dont have privileges... I managed to do it by restarting the mysql server that the process was accessing :)
Shrinath
even then, just keep the thread going, I want to know how do I get the handle to this process...
Shrinath
lol :) that link you provided is a good one for this... worked for me :) Might help someone who stumbles on the same problem :) thank you :)
Shrinath