1825771 Members
2314 Online
109687 Solutions
New Discussion

Re: umount busy...!! NFS

 
SOLVED
Go to solution
jackfiled
Advisor

umount busy...!! NFS

Hi all
Happy christmas..~~ and New year

we have systems with NFS
when I umount the mount point which is NFS,
the mounted point NFS is busy and can not be umounted
what can I do to umount NFS
6 REPLIES 6
Martin P.J. Zinser
Honored Contributor

Re: umount busy...!! NFS

Hello,

umount -f maybe?

Merry christmas,

Martin
Francisco J. Soler
Honored Contributor

Re: umount busy...!! NFS

Hi, Merry christmas.

Check if there are some terminals or programs that are using this resource. Free it and try to umount.

Frank.
Linux?. Yes, of course.
jackfiled
Advisor

Re: umount busy...!! NFS

Can you tell me how to check the file system used by some processes.?
Francisco J. Soler
Honored Contributor
Solution

Re: umount busy...!! NFS

Hi jackfiled, you can try (like superuser (su -)) the command fuser. For example:

# fuser -um /some_mounted_file_system

You get the proccess pid and the user. If you want to know which proccess is you can do an additional ps ax.

# ps ax | grep pid

Hope this helps.
Frank.

Linux?. Yes, of course.
Steven E. Protter
Exalted Contributor

Re: umount busy...!! NFS

Its possible to create a deadly NFS embrace.

Simple example, if server1 tries to mount an export on server2 and server2 tries to mount an export on server1, how do you bring either server down without messing with the other.

Widespread use of NFS mounts requires a plan.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
jackfiled
Advisor

Re: umount busy...!! NFS

thank you for all of your reply