- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: problem with umounting & mounting a file syste...
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
12-22-2005 06:39 AM
12-22-2005 06:39 AM
problem with umounting & mounting a file system
umount: cannot find /ACBP/db/ORACBPD/data/rbs01 in /etc/mnttab
cannot unmount /ACBP/db/ORACBPD/data/rbs01
# mount -F vxfs /dev/vg31/ACBP_db_ORACBPD_data_rbs01 /ACBP/db/ORACBPD/data/rbs01
vxfs mount: /dev/vg31/ACBP_db_ORACBPD_data_rbs01 is already mounted, /ACBP/db/ORACBPD/data/rbs01 is busy,
allowable number of mount points exceeded
Please suggest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 06:46 AM
12-22-2005 06:46 AM
Re: problem with umounting & mounting a file system
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=985287
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 06:48 AM
12-22-2005 06:48 AM
Re: problem with umounting & mounting a file system
Can you post the output of this command,
mount
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 07:08 AM
12-22-2005 07:08 AM
Re: problem with umounting & mounting a file system
fuser -cu ACBP/db/ORACBPD/data/rbs01 to see if any processes are attached to this mount point, if they are you can do a ps -ef to see what they are and try to kill them off or just issue a fuser -ku on the mount point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 07:19 AM
12-22-2005 07:19 AM
Re: problem with umounting & mounting a file system
If you have 'cd'-ed into the directory that you are trying to mount, you will get the very error you describe.
To see which processes are using the directory that you are trying to mount, do:
# fuser -u /ACBP/db/ORACBPD/data/rbs01
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 02:57 PM
12-22-2005 02:57 PM
Re: problem with umounting & mounting a file system
# fuser -ku /ACBP/db/ORACBPD/data/rbs01
Now, you can try mounting it again.
-Arun