Saved Bookmarks
| 1. |
How Would You Kill The Apache Process If Graceful Stop Doesn’t Work? |
|
Answer» If running on LINUX, then can use kill COMMAND. FIND out the PID of Apache by using ps -ef |grep http Then kill it kill $PIDNUMBER if normal kill doesn’t work then try kill -9 kill -9 $PIDNUMBER if on Windows, then end the apache TASK from Task Manager. If running on Linux, then can use kill command. Find out the PID of Apache by using ps -ef |grep http Then kill it kill $PIDNUMBER if normal kill doesn’t work then try kill -9 kill -9 $PIDNUMBER if on Windows, then end the apache task from Task Manager. |
|