- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS server not responding still trying
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
тАО06-20-2002 01:24 PM
тАО06-20-2002 01:24 PM
NFS server not responding still trying
When I try to connect to my box via lantronix, I get the following message:
"NFS server (pid450@/net) not responding still trying"
And the connection hangs there forever.
Anybody can help?
Thanks.
--Mehmet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 01:37 PM
тАО06-20-2002 01:37 PM
Re: NFS server not responding still trying
Here are a few things you can do..
1 - Check that the NFS server has indeed exported the data you want to import (/etc/xtab)
2 - Check network between NFS server & client (ping NFS server & ping NFS client)
3 - Check name resolution forwards & backwards.
4 - if you are using the automounter this can cause complications if you are not familiar with the set up. Try to do a direct nfs mount e.g. on client
# mount
See if that works
Thwere are really many a cause for this so you need to narrow down what is causing the problem
Good luck
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 01:39 PM
тАО06-20-2002 01:39 PM
Re: NFS server not responding still trying
The easiest thing to do is go to /etc/rc.config.d/nfsconf (I think) and make sure that AUTOFS and AUTOMOUNT are set NOT to start (set to 0) by default.
You can also go to /sbin/init.d/autofs (again, I think, I don't have a system to look at right now) and stop the daemon.
# /sbin/init.d/autofs stop
That should take care of your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 01:45 PM
тАО06-20-2002 01:45 PM
Re: NFS server not responding still trying
Thanks again for helping.
--Mehmet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 06:14 PM
тАО06-20-2002 06:14 PM
Re: NFS server not responding still trying
Now type the command: bo pri
and say yes to interact with IPL.
At the next prompt, type: hpux -is
and the system will then boot into single user mode. Once you get an HP-UX prompt, mount the /usr and /tmp and /var directories:
mount /usr
mount /tmp
mount /var
Then edit the file: /etc/rc.config.d/nfsconf and change these lines to =0 as shown:
NFS_CLIENT=0
NFS_SERVER=0
AUTOMOUNT=0
START_MOUNTD=0
AUTOFS=0
Now you can reboot by using: reboot -q
That will disable NFS. If you aren't going to use NFS, you can leave things as is. If you need NFS, don't enable it until networking, especially DNS is working correctly.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 06:26 PM
тАО06-20-2002 06:26 PM
Re: NFS server not responding still trying
If you not use NFS, another mothod is
move to /etc/rc.config.d/nfsconf.org from
/etc/rc.config.d/nfsconf and then you can
reboot or shutdown -r 0 .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 06:30 PM
тАО06-20-2002 06:30 PM
Re: NFS server not responding still trying
When HP-UX starts up it sources ALL the files in the /etc/rc.config.d directory. When it does this, it will source BOTH nfsconf and nfsconf.org, and the nfsconf.org will be 2nd alphabetically so you will still have your variables set to 1, which is NOT what you want.
If you really want to keep backups of files from /etc/rc.config.d then make a new directory called /etc/rc.config.d.backup or something and keep your backup copies there.
Just keep 1 version of a file in /etc/rc.config.d.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 06:59 PM
тАО06-20-2002 06:59 PM
Re: NFS server not responding still trying
#mv /etc/rc.config.d/nfsconf /etc/rc.config.d/nfsconf.org
is it wrong?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 07:06 PM
тАО06-20-2002 07:06 PM
Re: NFS server not responding still trying
-Roberto
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 07:13 PM
тАО06-20-2002 07:13 PM
Re: NFS server not responding still trying
You don't want to rename or have multiple copies of files in /etc/rc.config.d for the reason I gave above. If the file is still there, even by another name, it will still get sourced, and the variables set, when the system boots. So just renaming it from nfsconf to nfsconf.org does not help anything. You are better off just setting the NFS and AUTOFS / AUTOMOUNT variables to 0.
Have a look at this link for more information on the role the /etc/rc.config.d directory plays during system startup.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90682/B2355-90682_top.html&con=/hpux/onlinedocs/B2355-90682/00/03/334-con.html&toc=/hpux/onlinedocs/B2355-90682/00/03/334-toc.html&searchterms=rc.config.d&queryid=20020620-202153
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 08:06 PM
тАО06-20-2002 08:06 PM
Re: NFS server not responding still trying
thanks.
You gave me that more important things,progressive knowlege.
have a nice day!!