- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS permission issue
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
04-10-2008 02:12 AM
04-10-2008 02:12 AM
NFS permission issue
I am using the 1131 HP-UX system where I am having 50 GB space I have done nfs share through the /etc/dfs/dfstab for a particular system with read and write permission.
share -F nfs -o rw=Test1.test.com -d "nestle data" /data
and started the nfs server in the system while accessing from the client system I am unable to write any file in to the /data which is shared.
I am getting the error Permission denied in the server
Test1# touch test
touch: test cannot create
Regards
Gurudatta N.R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 02:22 AM
04-10-2008 02:22 AM
Re: NFS permission issue
anyway, check the .rhosts and /etc/hosts file
and also /etc/xtab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 02:30 AM
04-10-2008 02:30 AM
Re: NFS permission issue
it is /etc/dfs/dfstab in hpux 11.31 iam having valid hostname in /etc/hosts i have put the ip and root account in the .rhosts and tried .
Regards
Gurduatta N.R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 03:43 AM
04-10-2008 03:43 AM
Re: NFS permission issue
Are you be able to ping Test1.test.com (hostname) from NFS server.
Was there any issue while mounting also or only writing>
Are you using AUTOFS or manually mounting at client side?
Check the file /etc/dfs/sharetab in NFS server.
Best Regards
Ramesh S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 06:37 PM
04-10-2008 06:37 PM
Re: NFS permission issue
Can you run "share
Regards,
-jef
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 07:17 PM
04-10-2008 07:17 PM
Re: NFS permission issue
while i am mounting iam not getting any issue it will mount mannuly and with autofs also.
while writing iam getting the problem
my current /etc/dfs/sharetab file
/data - nfs rw=/data - nfs rw=dsau23.ind.hp.com,ro= nestle data,ro=
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 07:18 PM
04-10-2008 07:18 PM
Re: NFS permission issue
while i am mounting iam not getting any issue it will mount mannuly and with autofs also.
while writing iam getting the problem
my current /etc/dfs/sharetab file
/data - nfs rw=/data - nfs rw=test1.test.com,ro= nestle data,ro=
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 09:11 PM
04-10-2008 09:11 PM
Re: NFS permission issue
Can non-root users create files in the mounted filesystem?
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 09:26 PM
04-10-2008 09:26 PM
Re: NFS permission issue
I am able to do it now thanks for Help.
share -F nfs -o anon=0=test1.test.com -d "nestle data" /data
Regards
Guruadatta N.R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 09:32 PM
04-10-2008 09:32 PM
Re: NFS permission issue
> share -F nfs -o anon=0=test1.test.com -d "nestle data" /data
This syntax allows the root user from every client to access this system as root. Is that really what you want? If all you want to do is allow system "test1.test.com" read/write access the filesystem and allow the root user on "test1.test.com" to access files as uid=0 then the syntax would be:
share -F nfs -o rw=test1.test.com,root=test1.test.com /data
That's a much more secure way of sharing the filesystem.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2008 09:52 PM
04-10-2008 09:52 PM
Re: NFS permission issue
I have tried the option which is updated by you
share -F nfs -o rw=test1.test.com,root=test1.test.com /data
in this option i am getting the error
test1# touch gurudatta
touch: gurudatta cannot create
Regards
Gurudatta N.R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2008 07:17 AM
04-11-2008 07:17 AM
Re: NFS permission issue
If this syntax doesn't work then it tells me you have a hostname resolution problem in your site. When you specify a root= or rw= list and specify names of clients, the server needs to be able to resolve that hostname back to the correct IP address in order to grant access. It sounds to me like your NFS server is resolving "test1.test.com" to a different IP address than the client is actually using.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
