- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how can I kill the processes!
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-11-2005 06:51 PM
08-11-2005 06:51 PM
how can I kill the processes!
but it indicated busy
so I #fuser -ku /data
but I didn't work
how can I kill the processes which on the /data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:01 PM
08-11-2005 07:01 PM
Re: how can I kill the processes!
ps -ef | grep data
then
kill -9 pid
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:17 PM
08-11-2005 07:17 PM
Re: how can I kill the processes!
fuser -k /mountpoint
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:37 PM
08-11-2005 07:37 PM
Re: how can I kill the processes!
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:41 PM
08-11-2005 07:41 PM
Re: how can I kill the processes!
Try using lsof:
Lsof stands for LiSt Open Files, and it does just that. It lists information about files that are open by the processes running on a UNIX system.
prebuild binary downlod:
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/binaries/hpux/B.11.11/lsof_4.73.gz
binary file download:
http://hpux.cs.utah.edu/
#lsof /data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:44 PM
08-11-2005 07:44 PM
Re: how can I kill the processes!
#kill -9 pid-job-from-lsof
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 07:49 PM
08-11-2005 07:49 PM
Re: how can I kill the processes!
#fuser -kuc /mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:00 PM
08-11-2005 08:00 PM
Re: how can I kill the processes!
Attahed lsof binary. Copy the same to /usr/bin and execute
#lsof /data
This will give all the open files.
You can then kill using kill -9
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 11:33 PM
08-11-2005 11:33 PM
Re: how can I kill the processes!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2005 12:05 AM
08-12-2005 12:05 AM
Re: how can I kill the processes!
You can see with fuser /dev/vgxx/lvxx which process are over logical volume.
I hope this solve your problem.
Juanma.