- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Unable to kill a process
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
03-29-2007 02:03 PM
03-29-2007 02:03 PM
#lsof /orc_tmp
lsof 14429 root cwd DIR 232,48 4096 32769 /orc_tmp
lsof 14430 root cwd DIR 232,48 4096 32769 /orc_tmp
bash 21871 root cwd DIR 232,48 4096 32769 /orc_tmp
#lsof /orc_tmp
lsof 14434 root cwd DIR 232,48 4096 32769 /orc_tmp
lsof 14435 root cwd DIR 232,48 4096 32769 /orc_tmp
bash 21871 root cwd DIR 232,48 4096 32769 /orc_tmp
#lsof /orc_tmp
lsof 14441 root cwd DIR 232,48 4096 32769 /orc_tmp
lsof 14442 root cwd DIR 232,48 4096 32769 /orc_tmp
bash 21871 root cwd DIR 232,48 4096 32769 /orc_tmp
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2007 04:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2007 05:23 PM
03-29-2007 05:23 PM
Re: Unable to kill a process
Make sure u r not in the current directory path.From root kill that processes forcely.
Use fuser -v which will identitfy and displays the PIDs of processes using the specified files or sockets.
Normally if ur not able to kill some proccesses becaz the processes may be dependent on other processes.so try to find the dependent processes files using fuser.And then try to kill it.
Make sure that u unmount the directories which are required by the processes if u had manually mounted.
Regds,
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2007 11:33 AM
04-06-2007 11:33 AM
Re: Unable to kill a process
You just grep the process id by
ps -ef | grep process_name
and then use
kill -9 Pid.
it will work,if the processes are not Zombie.
Regards
Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2007 06:16 PM
04-08-2007 06:16 PM
Re: Unable to kill a process
fuser -ku /orc_tmp
fuser -ku /dev/device
or
fuser -k -m /dev/device
kill -9 process_id (as always)