how to kill background php thread?

17,296

Solution 1

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 know too. :)

Solution 2

With reference to the answer by etbal, this is OK as long as the process isn't continually spawning other processes due to some error in your programming logic (happened to me :().

Then you might try

  1. SSH into the server
  2. Type in pkill -u uuuuu

where uuuu is your SSH username. That should kill ALL processes belonging to you. In my particular case, the file causing the problem kept calling itself, it had to be renamed so it couldn't call itself again, and then a pkill issued.

Share:
17,296
Shrinath
Author by

Shrinath

Novice Programmer

Updated on June 04, 2022

Comments

  • Shrinath
    Shrinath almost 2 years

    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 ??

  • Nev Stokes
    Nev Stokes over 13 years
    Just to clarify the 'xxxxx' above is the PID! I'd also suggest using kill -9 xxxxx
  • Mchl
    Mchl over 13 years
    Just to clarify: all of the above applies to linux
  • Shrinath
    Shrinath over 13 years
    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
    Shrinath over 13 years
    even then, just keep the thread going, I want to know how do I get the handle to this process...
  • Shrinath
    Shrinath over 13 years
    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 :)