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 scan newly added disks to system?
How do you add the disk without reboot the server?
How to modify network card speed
how to view how many samba user in solaris
How many filed in /etc/vfstab
What is the difference between init 1 and init s ?
where we find bp.conf file? which path?
What is WWN on storage
If the root disk is failed how can change it?
How to find the kernel bit version or architecture
I have a "telnet" error then what you will do?
in solaris performance tuning what fields we check with IOSTAT, VMSTAT and NETSTAT?