how to stop the process using process name
Answers were Sorted based on User's Feedback
Answer / syed
if you know the process id than kill -9 <PID> works fine.
if you know the name of process in that case pkill <Process
Name> works fine.
kill for (numeric PID)
pkill for (process name)
| Is This Answer Correct ? | 11 Yes | 3 No |
#pstop pid : for stop the process
#pstart pid
or #prun pid : for start the process
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / chandhu
#pstop <proceesid> stop the process
#pstart <processid> start the process
(or)
kill the perticular process using proceess id
#ps -ef show all the process list,hen find the unwanted
process,kill it
#kill <processid>
#pkill -9 <processid>
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / bharathi
1) First of all find the process as follows:
#prstat | grep <process-name>
(or)
#ps -ef |grep <process-name>
2) After findinf the process-id of that process u want to
stop,do the following:
#kill -9 <process-id>
(or)
#pkill -9 <process-name>
(or)
#pkill -9 <process-id>
| Is This Answer Correct ? | 3 Yes | 5 No |
How to remove the root mirror
What is default permission of files and directory?
What does pkgadd command do?
If you have multiple ethernet interfaces, how do you keep it from routing between them?
what is interface in solaris
How do you add the disk without reboot the server?
how to find NIC card type. is there any command to display the card type when it not plumbed.
What is difference between Hard and Soft mount?
If you have got a LUN, How to configure it, how to allocate LUN in linux/ solaris. What are the steps ?
How ill you create a subdisk and plexus
How will you restart the inetd process?
How to change the mirror status from 0:1 to 0:5 and how?