- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mount permission denied
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
10-29-2004 07:16 AM
10-29-2004 07:16 AM
NFS mount permission denied
I am trying to NFS mount the server disk onto client, but I am getting a "permission denied" error.
entry in /etc/exports looks like this:
/var/opt/ignite/recovery/archives/
I also tried changing -anon=0. It did not help either.
Any thoughts?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 07:22 AM
10-29-2004 07:22 AM
Re: NFS mount permission denied
Should be:
/var/opt/ignite/recovery/archives/
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 07:22 AM
10-29-2004 07:22 AM
Re: NFS mount permission denied
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 07:56 AM
10-29-2004 07:56 AM
Re: NFS mount permission denied
FYI.. The client has FQDN, where as the server does not. Hence client shows
I have tried modifying the exports file to take care of that as well.
what else can I do?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 09:42 AM
10-29-2004 09:42 AM
Re: NFS mount permission denied
exportfs -a
after modifying the file?
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 09:49 AM
10-29-2004 09:49 AM
Re: NFS mount permission denied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 10:54 AM
10-29-2004 10:54 AM
Re: NFS mount permission denied
The best way to get a good understanding of why a mount fails is to collect both a network trace of the failing mount attempt, and to enable debug rpc.mountd logging on the NFS server.
You can use nettl or ethereal to collect the network trace. As for the debug rpc.mountd logging - you simply send the running rpc.mountd daemon a SIGUSR2 signal.
# ps -e | grep rpc.mountd
# kill -17
This will toggle debug logging on the server and start logging rpc.mountd messages into the file /var/adm/mountd.log. Once debug logging is enabled, and the network trace is started, reproduce the mount failure and then immediately stop the network trace (as these tend to fill up quickly) and then send the running rpc.mountd another "kill -17" to toggle debug logging back off.
The mountd log file should tell you why the mount is failing, or at least point you in the right direction. The network trace is handy to have to know exactly which IP address the mount request is coming from.
In other words, if your NFS client has 2 LAN interfaces and you're only exporting the filesystem on the server for 1 of the interfaces, and the mount request originates from the 2nd client LAN interface - the server will reject it. The network trace will show the IP addresses of the client sending the mount request, and you can use nslookup on the server to ensure that the server resolves the client's IP address to the hostname listed in the exports file.
Hope this helps,
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
10-29-2004 11:16 AM
10-29-2004 11:16 AM
Re: NFS mount permission denied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2004 01:51 PM
10-29-2004 01:51 PM
Re: NFS mount permission denied
Add the short hostname, fully qualified name and the IP address also and see if it works. It depends on how the client is 'appearing' to the NFS server.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 12:22 AM
11-01-2004 12:22 AM
Re: NFS mount permission denied
What is in nswitch.conf on both servers?
hosts: file [ SUCCESS=return NOTFOUND=continue UNAVAIL=continue TRYAGAIN=continue ] dns
If files then dns, I would add the hostsnames and FQDN of all servrs to the /etc/hosts file.
x.x.x.x node1 node1.yourdomain.com
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 03:17 AM
11-01-2004 03:17 AM
Re: NFS mount permission denied
this problem has been solved.