how to stop the process using process name

Answers were Sorted based on User's Feedback



how to stop the process using process name..

Answer / jsdkar

pkill processname

Is This Answer Correct ?    15 Yes 1 No

how to stop the process using process name..

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

how to stop the process using process name..

Answer / srinivas rao.muvva

#pstop pid : for stop the process

#pstart pid
or #prun pid : for start the process

Is This Answer Correct ?    0 Yes 1 No

how to stop the process using process name..

Answer / venky tiriveedhi

#pstop <processname>

Is This Answer Correct ?    0 Yes 1 No

how to stop the process using process name..

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

how to stop the process using process name..

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 stop the process using process name..

Answer / lochan

stop the process, you should be kill that.

pstop proc_id

wel come all

Any sugession

Is This Answer Correct ?    1 Yes 4 No

how to stop the process using process name..

Answer / himanshu gaur

Pkill process id

Is This Answer Correct ?    6 Yes 11 No

how to stop the process using process name..

Answer / guest

killp <process name>

Is This Answer Correct ?    2 Yes 8 No

how to stop the process using process name..

Answer / lochan

pstop

Is This Answer Correct ?    1 Yes 7 No

Post New Answer

More Solaris Commands Interview Questions

how can system identify run level at boot time?

5 Answers   Accenture,


How to Freeze svcgroup, (disable onl. & offl.)

2 Answers  


How to stop the process in Solaris?

9 Answers   GAS, Wipro,


What is difference between Hard and Soft mount?

1 Answers  


How to create core dump and crash dump #coreadm .

0 Answers  






How to find the VERITAS License?

7 Answers  


what is the difference between solaris 8&9,

2 Answers   BN, IBM, SUN,


How can you create mount points in solaris?

11 Answers   Huawei,


What are processing daemon in nis

2 Answers  


Were will be the configuration for metadevice

1 Answers  


Which file to be configuring the logs messages (like: /var/adm/message etc…)

1 Answers  


How to find the plex, sub disk, Volume group, disk status, free spaces, disk controller, Volume controller?

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)