- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS & Solaris
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
тАО07-12-2004 10:52 AM
тАО07-12-2004 10:52 AM
I've got a really confusing problem. I am exporting a directory from a Solaris 8 machine to a HP-UX 11 system. This directory is being exported read only. These systems are in two different NIS domains that don't come anywhere close to matching. The local mount point is /engdb3 with permissions of 777 with root:tcgrp as the owner & group. When I try to mount the exported file system on the HP-UX system there is no problem but it does change protection and ownership to 770 root:115. When I do a "ls" as root I get a message "unreadable". I have one username in tcgrp and that is burkharr. When logged in as burkharr and try to do a ls /engdb3 I get a error message "ls: /engdb3: Permission denied"
In the /var/adm/messages on the HP-UX box, I see the following message:
"Jul 12 15:34:59 tapsflt vmunix: NFS fsstat failed for server draco: RPC: Authentication error"
In the /var/adm/message on the Solaris 8 box, I see the following message:
"Jul 12 15:30:20 altair mountd[5483]: [ID 770583 daemon.error] tapsflt.ssd.loral.com denied access to /projects/t_and_c/tc_rel"
Can anyone help me out? TIA.
spike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2004 11:05 AM
тАО07-12-2004 11:05 AM
Re: NFS & Solaris
Try this
in Solaris
# exportfs -iv -o root=hpuxserver /engdb3
Now login as root in HP-UX, unmount & mount the export and try again
2) Looks like the GID of the group tcgrp is different in SUN and HP-UX machine.
Sync up the GID and try again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2004 11:05 AM
тАО07-12-2004 11:05 AM
Re: NFS & Solaris
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2004 11:31 AM
тАО07-12-2004 11:31 AM
Re: NFS & Solaris
You've basically solved my problem :-)))) Maybe I don't fully understand your answer. In your exportfs command you specify root access. How do I specify read-only access?
spike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2004 11:35 AM
тАО07-12-2004 11:35 AM
Solutionthis is how u specify read-only access
In solaris
# exportfs -iv -o root=hpuxserver,ro /engdb3
the above command will export the file system in read-only mode.
if you would like to restrict the clients who can mount the NFS export then
# exportfs -iv -o root=hpuxserver,ro,access=hpuxserver1:server2:server3 /engdb3
The above command will export the fs in readonly mode ONLY to nodes hpuxserver1, server2 and server3 with root privileges to root of hpuxserver.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2004 11:40 AM
тАО07-12-2004 11:40 AM
Re: NFS & Solaris
For reference, check out:
http://www.uwsg.iu.edu/usail/network/nfs/admin.html
http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B1031-90054&service=hpux&path=00/00/1&title=NFS%20Services%20Administrator%27s%20Guide
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-13-2004 02:03 AM
тАО07-13-2004 02:03 AM
Re: NFS & Solaris
thanks for the references. They look very good.
spike