- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Phantom mount point, umount gives block device...
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-02-2005 07:37 AM
08-02-2005 07:37 AM
Phantom mount point, umount gives block device required
I should have /dev/vg58/lvol1 mounted at /bcv/u01/oracle/xproddata. If I run bdf | grep vg58, I see that lvol and mount, but the lvol size numbers are those of the / filesystem. Which makes sense, if the file system really isn't mounted.
If I try to umount by either the special file or directory, I get " umount: cannot unmount /bcv/u01/oracle/xproddata : Block device required "
If I cd to the directory, there is no lost+found, and running a " bdf . " from it gives the proper info for the / filesystem (as it should IF the /dev/vg58/lvol1 filesystem were unmounted).
I found the thread from last year describing a similar problem, where the solution was to mv /etc/mnttab and run mount to rebuild it. I tried that, and the rebuilt mnttab still has this phantom line in it, and I still can't umount it. Where does the mount command get the information to rebuild the mnttab?
Any other suggestions short of rebooting the machine? It's a large database development server, so rebooting is possible but a bit of a pain to schedule.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 08:29 AM
08-02-2005 08:29 AM
Re: Phantom mount point, umount gives block device required
NFS Sucks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 09:02 AM
08-02-2005 09:02 AM
Re: Phantom mount point, umount gives block device required
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 09:32 AM
08-02-2005 09:32 AM
Re: Phantom mount point, umount gives block device required
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 10:47 AM
08-02-2005 10:47 AM
Re: Phantom mount point, umount gives block device required
I have the feeling you'e tried it all.
I think your probably going to have to do the dreaded reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 01:45 PM
08-02-2005 01:45 PM
Re: Phantom mount point, umount gives block device required
It gives the already mounted, or mount point busy, or etc. error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 02:30 PM
08-02-2005 02:30 PM
Re: Phantom mount point, umount gives block device required
"lsof +d /bcv/u01/oracle/xproddata" displays nothing. "lsof +d /" displays swapper, init, lvmkd, etc etc.
There shouldn't be any complicated stuff here. The filesystem was just formatted, mounted at one directory, then I umounted it here and mounted at another -- but apparently did my ctrl-c on the script doing the mount (of this and other filesystems) while it was processing this first one. So there aren't any submounts, or subdirectories, or really anything else on the filesystem.
I'm feeling more and more like reboot is the only hope.
P.S. to my earlier answer: mounting to the same directory gives the "is already mounted on" message; mounting to a different directory /mnt gives the "is already mounted, /mnt is busy, or allowable number of mount points exceeded" message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 07:50 PM
08-02-2005 07:50 PM
Re: Phantom mount point, umount gives block device required
you might try
mount -o remount /mount-point
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2005 12:57 AM
08-03-2005 12:57 AM
Re: Phantom mount point, umount gives block device required
Thanks for the suggestion. When I use the -o remount, it gives the message:
vxfs mount: /dev/vg58/lvol1 or /bcv/u01/oracle/xproddata, no such file or directory
But both the special file and the directory do exist.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2005 09:18 AM
08-03-2005 09:18 AM
Re: Phantom mount point, umount gives block device required
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2005 01:57 PM
08-03-2005 01:57 PM
Re: Phantom mount point, umount gives block device required
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2005 02:13 PM
08-03-2005 02:13 PM
Re: Phantom mount point, umount gives block device required
Thanks for all the responses.
-- Brad