I want to kill some of Apache server process in Linux.
Please help me in this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if you have pid of the processes that want to kill then use
killcommand.And if this doesn’t kill the processes you can add
-9flag tokillcommand to forcefully kill the processes likeTo get the pid of the process you can use
pscommand asfirst column of output is the pid of the process.