- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to umount (umount -f was still failed)
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
09-03-2009 09:49 PM
09-03-2009 09:49 PM
/dev/vg02/lvol1 /dbfs vxfs ioerror=mwdisable,largefiles,delaylog,nodatainlog
,dev=40020001 0 0 1251909559
root@erpap:/ >umount -fv /dbfs
usage: umount [-V] [-v] { special | directory }
umount [-F FStype] [-v] -a
umount: return error 1.
====================================
Is there another way to umount /dbfs forcely other than reboot the whole system??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 10:22 PM
09-03-2009 10:22 PM
Re: Unable to umount (umount -f was still failed)
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 10:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 11:45 PM
09-03-2009 11:45 PM
Re: Unable to umount (umount -f was still failed)
vxfs vxumount: V-3-25255: vxumount: You don't have a license to run this program
-------------
What license should I have to run this program?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 11:51 PM
09-03-2009 11:51 PM
Re: Unable to umount (umount -f was still failed)
#fuser -cu /dbfs
If it is ok then kill this process, then finally unmount:
#umount /dbfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 11:53 PM
09-03-2009 11:53 PM
Re: Unable to umount (umount -f was still failed)
I would suspect Online JFS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2009 11:54 PM
09-03-2009 11:54 PM
Re: Unable to umount (umount -f was still failed)
Because commands are slightly different from version to version.
Apparently you have 11i v1 ?
Check man umount to see each options
then again you cannot umount ;
use
fuser -cu /dbfs OR
lsof /dbfs
and
kill -9 PID_you_found_related_with_your_FS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2009 12:03 AM
09-04-2009 12:03 AM
Re: Unable to umount (umount -f was still failed)
fuser, bdf, glance, cd /dbfs .. such command will just hang, and the processes are unable to be killed at all.
OS version is 11.31. And, "man 1M umount" shows "-f" option. However, there's no Online JFS installed.
It looks that the only solution is reboot without purchase Online JFS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2009 05:25 AM
09-06-2009 05:25 AM
Re: Unable to umount (umount -f was still failed)
you have 2 ways to do it,
the first you can use fuser -ku /directory when K meens kill all process related to this directory
teh second use lsof /directory, it list all the process related to this directory and use kill -9 pid of those process.
good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2009 05:37 AM
09-06-2009 05:37 AM
Re: Unable to umount (umount -f was still failed)
The disk was one snapshot of EVA BC. And, I deleted the snapshot before umounted the file system, and it caused the file system hanged.
No command will be able to umount it later only if Online JFS is installed.
No matter fuser, lsof, ... is used...