- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mounting Remote File System - Permission Denie...
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
11-05-2003 08:37 AM
11-05-2003 08:37 AM
I have server pds2 which has the following in /var adm/inetd.sec:
mountd allow xxx.xxx.xxx.xxx pds1 (where xxx is the IP address of pds1)
permissions on inetd.sec is rwxrwxrwx
In /etc/exports:
/u04 rw=pds1
The permissions on /etc/exports is rwxrwxrwx
The permissions on /u04 is rwxrwxrwx
I then submit exportfs -va and get message that directory has been exported.
On client, pds1:
I mkdir /u11 and change permissions to rwxrwxrwx.
I issue showmount -d pds2 and it shows:
export list for pds2:
/u04 rw=pds1
With all of that, when I issue the mount command:
mount pds2:/u04 /u11
I get Permission Denied error.
I have checked and the NFS daemons are running.
Every piece of documentation I have and have found says this should work. Any clues???
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 08:44 AM
11-05-2003 08:44 AM
SolutionAlso, try giving FQDN at exports file instead of short names:
/u04 -rw=pds1.mydomain.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 08:51 AM
11-05-2003 08:51 AM
Re: Mounting Remote File System - Permission Denied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 08:55 AM
11-05-2003 08:55 AM
Re: Mounting Remote File System - Permission Denied
2) Try restarting nfs daemons in server and client systems.
3) Make sure all NFS patches are loaded.
4) Check the NFS version on both server and client are same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 08:56 AM
11-05-2003 08:56 AM
Re: Mounting Remote File System - Permission Denied
Just to be sure... on the server machine, do "exportfs -a".
Failing that oversight...
have you tried it by specifying the allowable host(s)?
/u04 -anon=65534,rw,access=host1:host2:etc...
exportfs -a after changes, of course.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 09:02 AM
11-05-2003 09:02 AM
Re: Mounting Remote File System - Permission Denied
in /etc/exports I had:
/u04 rw=pds1
instead of
/u04 -rw=pds1
THANKS SHIJU!!!!!