- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mounts between 11.11 and 11.31
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
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
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
тАО10-08-2010 02:03 AM
тАО10-08-2010 02:03 AM
NFS mounts between 11.11 and 11.31
We're a pa-risc/11.11 shop and are moving to Itanium/11.31. We use NFS extensively. I've just tried (repeatedly) to do an NFS mount from an 11.31 machine to an 11.11 machine with no luck.
I'm finding this really confusing. Smh aside, what is the difference between /etc/dfs/dfstab and /etc/dfs/sharetab?
Some of the HP documentation I've read says to edit dfs tab and then run 'shareall -F nfs'. I've tried that and it doesn't work (if I subsequently try to unshare the directory, it tells me it's not shared).
Just co confuse things futher, some of the other documentation says to edit sharetab and run shareall, which I've done to no avail.
The nearest Ive got to getting this to work was to use smh to share the 11.31 directory, but when I did that, I could (NFS) mount it on another 11.31 machine, but not on an 11.11 machine.
Help....
Thanks in advance,
Gary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2010 02:15 AM
тАО10-08-2010 02:15 AM
Re: NFS mounts between 11.11 and 11.31
Do you use a FQDN?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2010 02:46 AM
тАО10-08-2010 02:46 AM
Re: NFS mounts between 11.11 and 11.31
Thanks for the response.
On the machine that has the directory to be shared out/exported...
dfstab:
share -F NFS -o anon=65534 -d ├в NCD Boot Directory├в /opt/ncd/tekxp/boot
sharetab:
/opt/ncd/tekxp/boot /opt/ncd/tekxp/boot nfs rw none
Not quite sure what you mean by using the FQDN as the syntax neither of these files mentions a host name.
Regards,
Gary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2010 02:48 AM
тАО10-08-2010 02:48 AM
Re: NFS mounts between 11.11 and 11.31
share -F NFS -o anon=65534 -d "NCD Boot Directory" /opt/ncd/tekxp/boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-08-2010 07:10 PM
тАО10-08-2010 07:10 PM
Re: NFS mounts between 11.11 and 11.31
I was guessing that if you used just rw=foo, you would have to qualify it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2010 11:35 PM
тАО11-01-2010 11:35 PM
Re: NFS mounts between 11.11 and 11.31
Shibin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-02-2010 12:23 AM
тАО11-02-2010 12:23 AM
Re: NFS mounts between 11.11 and 11.31
Option 1
Manually share the directory from the command prompt:
# share -F nfs -o rw -d "NCD OCX boot directory" /opt/ncd/tekxp/boot
This causes an entry to be added to /etc/dfs/sharetab:
# cat sharetab
/opt/ncd/tekxp/boot - nfs rw NCD OCX boot directory
This entry is removed when the directory is unshared.
Option 2
Add an entry to /etc/dfs/dfstab, the syntax of which is exactly the same as the manual тАШshareтАЩ command, then run shareallтАж
Add the following to /etc/dfs/dfstab:
share -F nfs -o rw -d "NCD OCX boot directory" /opt/ncd/tekxp/boot
Then run the shareall command
# shareall -F nfs
This causes an entry to be added to /etc/dfs/sharetab:
# cat sharetab
/opt/ncd/tekxp/boot - nfs rw NCD OCX boot directory
This entry is removed when the directory is unshared.
Hope that might help others.
Regards,
Gary