- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS 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
Discussions
Discussions
Discussions
Forums
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
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-18-2002 05:32 PM
тАО03-18-2002 05:32 PM
I've a server that have crashed today :( and this server was exporting filesystem via NFS to another HP-UX 10.20 server... When the server crashed there was some people working on files via NFS and my server that have stayed online, give me this error:
cannot unmount /dev/... :Device Busy
I know that is because there is some processe that are using the NFS link... but the thing is I can't kill them... Does somebody have an idea on how to kill the process without rebooting my server??
Thanks
Jonathan
Solved! Go to Solution.
- Tags:
- NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-18-2002 06:09 PM
тАО03-18-2002 06:09 PM
Re: NFS Device Busy
# mount -v
to get the exact hostname that exported the file system (for example, say it's host.dom.com:/opt/apps) which is mounted on /test.
To see the processes using an NFS-mounted file system, specify the first argument that appears in the mount -v.
# fuser host.dom.com:/opt/apps
Then try to kill 'em ..
# fuser -k host.dom.com:/opt/apps
If it's sccesful you should be able to umount it.
# umount host.dom.com:/opt/apps
If it doesn't work, reboot is the only way.
- Tags:
- fuser
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 01:07 PM
тАО03-19-2002 01:07 PM
SolutionYou should probably stop the NFS client.
The nfs client or server process is probably hung. You should probably restart the client and server. This should clean up device busy errors.
#/sbin/init.d/nfs.client stop
#/sbin/init.d/nfs.client start
Then try to mount the filesystem. This should clean up any connections you may have had opened.
# mount -a
If this doesn't work, then try stopping the NFS server as well.
#/sbin/init.d/nfs.server stop
#/sbin/init.d/nfs.server start
If you are still having problems, go to the NFS server and see if you have permissions to mount the directory.
on the NFS server: #exportfs
See if your client is in the output. If it is not, then add it.
# exportfs -i
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 01:21 PM
тАО03-19-2002 01:21 PM
Re: NFS Device Busy
If your original nfs server is now up and running.
Please do following :
1. log on to NFS server and execute following
/sbin/init.d/nfs.server stop
2. Log on to your NFS client where you are unable to kill the processes. Execute following command
/sbin/init.d/nfs.client stop
3. Now try to kill the processes, which you want to kill.
4. got to /tmp_mnt and delete that directory.
5.once you are sucessful in killing the processes.
6.Logon to NFS server and start nfs server.
/sbin/init.d/nfs.server start
7. log on to NFS client and start nfsclient processes
/sbin/init.d/nfs.client start
I think that will solve your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 02:05 PM
тАО03-19-2002 02:05 PM
Re: NFS Device Busy
or still continue...??/
-pap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 02:51 PM
тАО03-19-2002 02:51 PM
Re: NFS Device Busy
fuser -cuk /dev/cxtxdx
If that doies not wqork, move up a level and try it with the mount point ...I.E...
fuser -cuk /var/opt/whatever
Good Luck!
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 03:00 PM
тАО03-19-2002 03:00 PM
Re: NFS Device Busy
Pap's solution worked fine..
thanks again!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2002 03:07 PM
тАО03-19-2002 03:07 PM
Re: NFS Device Busy
I am glad that you resolved your problem and my solution worked for you.
Thanks,
-Piyush.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2012 06:44 AM
тАО06-13-2012 06:44 AM
Re: NFS Device Busy
fuser -cu /xxx to see which device is using nfs..