- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can i stop process HP-UX
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 11:37 AM
08-24-2006 11:37 AM
i need some help, i have a server and this server have a lot of process running at this time, i need to stop this process and know who user start it, and if i can know the ip or host name of the people that start the process.
thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 11:45 AM
08-24-2006 11:45 AM
Re: how can i stop process HP-UX
check crontabs for users on the system and also look at any SHELL command history files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 12:51 PM
08-24-2006 12:51 PM
Solutionif this is a web server and people are launching processes over the network, it will be hard to track. But if the users, who are starting these processes, you can use a command like
ps -ef | grep user_name
and see what they started and kill the processes using their pid numbers. PID number is the first number coming right after the user name in the ps -ef output.
if you clearly define what type of server and what kind of processes you are talking about, you can get better help.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 05:51 PM
08-24-2006 05:51 PM
Re: how can i stop process HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 11:05 PM
08-24-2006 11:05 PM
Re: how can i stop process HP-UX
After you have identified the process id, you may also know the ip address by running the following command:
who -u|grep
Note that this will not work for all processes. This is applicable for only for those who have logged on the server.
e.g.
$ who -u|grep 11479
root pts/tf Aug 23 16:24 . 11479 PC969
$
hope this helps too!
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2006 12:21 AM
09-22-2006 12:21 AM
Re: how can i stop process HP-UX
Use the command without quote "ps -ef" and kill the process using kill -9
e.g
$ps -ef | grep
$kill -9
Regards
Sasikala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2006 12:49 AM
09-22-2006 12:49 AM
Re: how can i stop process HP-UX
Once you determine the pid to be killed, do not start out with a 'kill -9'. 'kill -9
Proceed in this order:
# kill -1
# kill -2
# kill -3
# kill -11
# kill -9
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2006 04:31 AM
09-22-2006 04:31 AM
Re: how can i stop process HP-UX
You can use the "ps -ef" command to find the pid number you want to kill. Then do a "kill" command or a "kill -9".
sp,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 06:15 AM
03-27-2007 06:15 AM
Re: how can i stop process HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 08:33 AM
03-27-2007 08:33 AM
Re: how can i stop process HP-UX
What processes are you speaking about?
If you can't kill them, your processes are blocked in a kernel call.
And so they do not receive your kill signals until they leave kernel.
This case is mostly when nfs is involved.
Do you have nfs mounted filesystems? Are there some "stale nfs-handle" messages in syslog.log?
rgds
HGH