- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mount problem, device busy
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
01-20-2004 04:28 AM
01-20-2004 04:28 AM
mount problem, device busy
I have a problem with a Service Guard script which is trying to NFS mount a filesystem.
The following message comes up:
Jan 20 17:41:26 yiek sgsmoumx.sh [2942]: Mounting of /m/home has failed!!!
nfs mount: mount_nfs: mount: /m/home: Device busy
the command in the SG script is:
mount sysyo:/d/home /m/home
(sysho is a SG package,
/m is a softlink to /d)
when I try to do it manually, the following happens:
yiek:/ (109) root% mount sysyo:/d/home /m/home
nfs mount: mount_nfs: mount: /m/home: Device busy
when I try it with a new mount point /k/home it works
yiek:/ (110) root% mkdir /k
yiek:/ (111) root% mkdir /k/home
yiek:/ (112) root% mount sysyo:/d/home /k/home
yiek:/ (113) root% bdf
yiek:/ (113) root% bdf
Filesystem kbytes used avail %used Mounted on
...
sysyo:/d/home 4292608 9576 4015400 0% /k/home
when I try to free the filesystem /m/home I get the message:
yiek:/etc/cmcluster/db (191) root% fuser -ck /m/home
/m/home: fuser: could not find file system mounted at /m/home.
++++ can you help ++++
BR Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 04:39 AM
01-20-2004 04:39 AM
Re: mount problem, device busy
fuser /m/home
Will tell you if someone is there, because you don't have a file system mounted yet the -ck switch will fail with the error you are getting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 04:41 AM
01-20-2004 04:41 AM
Re: mount problem, device busy
Make sure someone is not in /d/home (as you mentioned /m is a softlink to /d). YOu could do onething. Mv /d to /d.old and create /d/home and then try mounting it manually. It will take care of users in that directory.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 05:01 AM
01-20-2004 05:01 AM
Re: mount problem, device busy
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 07:04 AM
01-20-2004 07:04 AM
Re: mount problem, device busy
Look in /etc/mnttab to make sure there is not already something mounted there.
( of course, there's always a fix in a reboot)
aside:I thought mount points could have files in them, they just get hidden when something is mounted over them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:07 AM
01-20-2004 08:07 AM
Re: mount problem, device busy
Check if any any process is using /m/home .It might already mounted fot other filesystem .check with fuser
# fuser /m/system
if try killing the process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:11 PM
01-20-2004 08:11 PM
Re: mount problem, device busy
thx for your answers, problem has been solved by a colleague already.
He run a script, which is recreating the softlink /m -> /d and recreating all the filesystems /m/* which work as mountpoints for the real /d/* filesystems.
fuser is a good hint, thx for that...
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 07:48 PM
01-21-2004 07:48 PM