How to stop the process in Solaris?

Answers were Sorted based on User's Feedback



How to stop the process in Solaris?..

Answer / lochan

pstop pname or proc_id

Is This Answer Correct ?    17 Yes 3 No

How to stop the process in Solaris?..

Answer / sanoopnarayan

#Get process Id using command 1 or 2:

1) ps -ef |grep <process_name>

2) pgrep <process_name>



#Then Kill the process using command 1 0r 2:


1) kill -9 <process_id>

2) pkill -P <Parent_process_id>

Is This Answer Correct ?    12 Yes 2 No

How to stop the process in Solaris?..

Answer / p.r.l.prasanna

kill -9 <process name>

9 means send request signal kill specific process id
or

pkil <process name>
or
pkill <process id>

Is This Answer Correct ?    13 Yes 5 No

How to stop the process in Solaris?..

Answer / kiran

If its a daemon we have to stop by going to cd /etc/init
stop the daemon.
where its unknown process its better to terminate the
process by using Pkill -9 process or pid

Is This Answer Correct ?    10 Yes 4 No

How to stop the process in Solaris?..

Answer / vasu

stop the process #pstop pid
start the process #prun pid (or) #pstart pid

Is This Answer Correct ?    7 Yes 1 No

How to stop the process in Solaris?..

Answer / c.p.bansal

kill -9 pid(process id) or
pkill processname

Is This Answer Correct ?    5 Yes 1 No

How to stop the process in Solaris?..

Answer / stratovarius

Determine if the process is runing #ps -ef |grep -i
<process_name>, then use on of the following:
1.#pkill signal process
2.#kill signal PID note:signal 15 sigterm is the default
and safe, sigkill(9) could leave zombie child processes.
3.#pstop <pid>
4.# /ect/init.d/process stop --> for under init
5.Via SMF or inetadm

Is This Answer Correct ?    5 Yes 2 No

How to stop the process in Solaris?..

Answer / lochan

How to suspend the process in solaris?

Is This Answer Correct ?    9 Yes 7 No

How to stop the process in Solaris?..

Answer / sai

find process id by using #prstat
then #kill -9 pid

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Solaris Commands Interview Questions

If a main.cf files corrupted how will you rectify

3 Answers  


How will you clear the soft error on disk

1 Answers  


How many replicas should be for raid5 in sds if I have 5 disk

2 Answers  


How far VCS supports?

1 Answers  


How will you view the packages?

2 Answers  






What is encapsulation?

3 Answers  


I want to know how to Sechudle job using at and crontab so please give the explain with example please do the needful Regards Visva

2 Answers   Sapient,


what is differnce between boot -s and boot -S ?

3 Answers  


How to check and analyze the logs in /var/adm/messages?

2 Answers  


Which file will take place while booting

1 Answers  


How to configure email notification in solaris 8? We are using netbackup 5

0 Answers   India Today,


How to unfreeze the svcgroup, (enable onl. & offl.)

2 Answers  


Categories
  • Solaris Commands Interview Questions Solaris Commands (360)
  • Solaris Threads Interview Questions Solaris Threads (9)
  • Solaris IPC Interview Questions Solaris IPC (30)
  • Solaris Socket Programming Interview Questions Solaris Socket Programming (3)
  • Solaris System Calls Interview Questions Solaris System Calls (25)
  • Solaris General Interview Questions Solaris General (170)
  • Solaris AllOther Interview Questions Solaris AllOther (297)