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

What are processing daemon in nis

2 Answers  


How can we take the failback in Veritas Cluster Server.

1 Answers   ITC Infotech,


How to check the sleeping process in Solaris.

10 Answers   Chase, JPMorgan Chase,


Options in ufsrestore

1 Answers  


how to search hide files

14 Answers   TCS,






what is the command to know about pkg information

7 Answers  


Which file will take place while booting

1 Answers  


What is the command to check the connectivity between 2 nodes

2 Answers   IBM,


How to check the communication between 2 nodes?

5 Answers  


How to Create a snapshot mirror

2 Answers  


How to enable and disable the dtlogin

1 Answers  


what is mount ? in that what will happen exactly ?

1 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)