Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to kill background php thread?

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

like image 373
Shrinath Avatar asked Oct 14 '10 07:10

Shrinath


2 Answers

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

like image 64
Etienne Marais Avatar answered Oct 17 '22 14:10

Etienne Marais


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.

like image 43
Rob Banmeadows Avatar answered Oct 17 '22 13:10

Rob Banmeadows