![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| kill all user processes | vascobrito | Shell Programming and Scripting | 4 | 09-03-2009 12:02 PM |
| kill processes | pmrajesh21 | SUN Solaris | 3 | 10-30-2008 09:08 AM |
| how do I kill defunct processes? | csaunders | SUN Solaris | 10 | 01-28-2008 04:49 PM |
| Unix Kill processes | tadi18 | Shell Programming and Scripting | 5 | 07-23-2007 07:37 AM |
| kill all processes | Terrible | Shell Programming and Scripting | 0 | 08-21-2006 07:49 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Read/kill processes
Hi,
I read a set of processes with: ps -eaf|grep oracleTRLV The result is: oracle 23253 1 0 15:14:11 ? 0:00 oracleTRLV (LOCAL=NO) oracle 23301 1 0 15:15:07 ? 0:00 oracleTRLV (LOCAL=NO) oracle 22914 1 0 15:11:19 ? 0:00 oracleTRLV (LOCAL=NO) How to I kill the "oracleTRLV" ones? Is there an option for the "kill" command that allows me to do it? Thank you. |
|
||||
|
If you can logon as root or as the oracle user you can kill those processes. Assuming killing them is actually a good idea, which you should check on FIRST:
Code:
ps -eaf|grep oracleTRLV | \
while read one pid restofline
do
kill -9 $pid
done
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|