Operating System - HP-UX
1825759 Members
2138 Online
109687 Solutions
New Discussion

Re: Cannot mount NFS file system!

 
SOLVED
Go to solution
Igor Sovin
Super Advisor

Cannot mount NFS file system!

Hi!
when I'm trying to mount nfs file system from another host db00 I get the following message

NFS server db00 not responding still trying

but all nfs daemons on both hosts are running.
What's the problem?
8 REPLIES 8
Steven E. Protter
Exalted Contributor
Solution

Re: Cannot mount NFS file system!

Diagnostic steps:

1) Can you ping it? If ping is permitted and you can't ping it, check network connectivity. See that cables and switches are all properly configured. Check the lanadmin output.

2) On the server tail -f /var/adm/syslog/syslog.log try the connect. If there are log entries, act on them, if not, go back to item 1.

3) check the /etc/exports file on the server and see if it has host restrictions and if they effect the client having the problem.

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
Binu_5
Regular Advisor

Re: Cannot mount NFS file system!

Please try this

1)First try to ping the server
2)check wheather you are ble to telnet
3)check /etc/exports file
4)use showmount to check the file system is exported
5)If the file system is exported stop
the nfs services in both system
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.clinet stop

5)Start the services

6)If not working reboot he sytem

Thanks
Binu
Muthukumar_5
Honored Contributor

Re: Cannot mount NFS file system!

Check whethere there is a same mount available in client machine.

1. Check ping connectivity
2. unmount if there is existing mount from db00 machine.
3. create new mount as,

mkdir /db00mount
mount -v db00:/ /db00mount

Check with rpcinfo command to see the NFS problem.

hth.
Easy to suggest when don't know about the problem!
Gopi Sekar
Honored Contributor

Re: Cannot mount NFS file system!


few reasons:

* Network is not available between server and client
* Firewall is blocking NFS traffic
* Portmap service is not running on the client (which is more likely), for NFS mounts to work you should run portmap service first.

Never Never Never Giveup
Igor Sovin
Super Advisor

Re: Cannot mount NFS file system!

Previosly nfs filesystem was mounted from server. Everything was okay.
Then IP and subnet mask of host were changed.
and now I cant umount the nfs file system and bdf hangs with the message:
NFS server db00 not responding still trying

I can ping server.
Igor Sovin
Super Advisor

Re: Cannot mount NFS file system!

the hostname of the client is still the same
Ermin Borovac
Honored Contributor

Re: Cannot mount NFS file system!

Try the following on the client. Assumes that lan0 is valid/connected LAN card.

# ifconfig lan0:1 netmask up
# umount /mount/that/hangs
# ifconfig lan0:1 0.0.0.0
Igor Sovin
Super Advisor

Re: Cannot mount NFS file system!

after server reboot, everything is ok.
thanks for advices