- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NFS mount of HP-UX 9 filesystem fails on HP-UX...
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
01-07-2003 01:25 PM
01-07-2003 01:25 PM
NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
nfs mount: get_fh: wgse.LPL.Arizona.EDU:/gse/Log server not
responding : RPC: Authentication error; why = Invalid client credential
HP-UX 10.20 systems can mount this same filesystem without any errors. I've verified that I'm exporting this filesystem to both the 10.20 and 11i systems.
Any idea what the problem is?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 11:16 PM
01-07-2003 11:16 PM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
The above should work if the udp based nfs service is running on your 11i machine. check by rpcinfo -p - that should show a udp service running for nfs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 11:31 PM
01-07-2003 11:31 PM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
I don't have hpux-9 machine to check this problem, propably you can try these out.
An HP-UX 9.x system is neither an NFS client by default nor an NFS server. It may become either by modifying /etc/netnfsrc. Change:
NFS_CLIENT=0
NFS_SERVER=0
START_MOUNTD=0
to:
NFS_CLIENT=1
NFS_SERVER=1
START_MOUNTD=1
The automounter will start automatically on HP-UX 9.x if there is a valid auto.master NIS map. To use /etc/auto.master, modify the line in /etc/netnfsrc2 where the automounter is started so that the automounter is started with the -f option:
/usr/etc/automount -f /etc/auto.master
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2003 05:54 AM
01-08-2003 05:54 AM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
Its worth looking into, though I never did real administration work on anything below 10.20.
Steve
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
01-08-2003 01:32 PM
01-08-2003 01:32 PM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
NFS_CLIENT and NFS_SERVER in /etc/netnfsrc are already set to 1. START_MOUNTD seems to be a illegal entry in this file.
I guess the old client machine is actually HP-UX 8.0. uname -a returns:
HP-UX WGSE B.08.00 A 9000/42T 080009321edb
There is no option to start the automounter in /etc/netnfsrc2.
So thanks anyway, but I'm still stuck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2003 09:32 PM
01-08-2003 09:32 PM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
Ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 12:35 AM
01-14-2003 12:35 AM
Re: NFS mount of HP-UX 9 filesystem fails on HP-UX 11i
Beginning with HP-UX release 10.30, there are two versions of NFS available: Protocol Version 3 (PV3) and Protocol Version 2 PV2). Releases HP-UX 10.20 and earlier only have PV2 available. The default for mounting from a server on HP-UX 11 and 11i is PV3. You can use enhanced mount command to specify which NFS version should be mounted, see man 1M mount_nfs. Hope it will help, cause i never tried to do it by myself.
Example from man pages:
To mount an NFS file system over Version 3:
mount -o vers=3 serv:/usr/src /usr/src