- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cannot mount NFS file system!
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
06-21-2005 04:41 PM
06-21-2005 04:41 PM
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?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 04:54 PM
06-21-2005 04:54 PM
Solution1) 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
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 05:26 PM
06-21-2005 05:26 PM
Re: Cannot mount NFS file system!
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 05:34 PM
06-21-2005 05:34 PM
Re: Cannot mount NFS file system!
1. Check ping connectivity
2. unmount if there is existing mount from db00 machine.
3. create new mount as,
mkdir /db00mount
mount -v db00:/
Check with rpcinfo command to see the NFS problem.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 05:54 PM
06-21-2005 05:54 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 06:06 PM
06-21-2005 06:06 PM
Re: Cannot mount NFS file system!
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 06:09 PM
06-21-2005 06:09 PM
Re: Cannot mount NFS file system!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 06:26 PM
06-21-2005 06:26 PM
Re: Cannot mount NFS file system!
# ifconfig lan0:1
# umount /mount/that/hangs
# ifconfig lan0:1 0.0.0.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2005 06:33 PM
06-21-2005 06:33 PM
Re: Cannot mount NFS file system!
thanks for advices