- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mounting issues
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
07-05-2006 01:46 AM
07-05-2006 01:46 AM
NFS mounting issues
on server I have given in /etc/exports
/misc -access=rw=x.x.x.x
however on client side when i try to mount this it gives me an error of permission denied. Can anyone help me out on this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 01:57 AM
07-05-2006 01:57 AM
Re: NFS mounting issues
the read only access is the default, you can add the line
/misc -access=x.x.x.x
in the /etc/exports file
then you need to run the
exportfs -a
command from the server
then you can mount from the client.
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 02:00 AM
07-05-2006 02:00 AM
Re: NFS mounting issues
Perhaps exportfs -av on the server. Maybe your settings are not loaded on the server.
tail -f /var/adm/syslog/syslog.log
See what the issue is during the mount.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 02:01 AM
07-05-2006 02:01 AM
Re: NFS mounting issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 02:07 AM
07-05-2006 02:07 AM
Re: NFS mounting issues
>>the read only access is the default, you can add the line
That is incorrect. NFS exports filesystems read/write by default.
Also, I don't believe you can specify a client by IP address. Check out exportfs(1m) for details under the access section.
I believe you'll need to specify a host name and ensure name resolution is working either through /etc/hosts or through dns. Whichever way, ensure /etc/nswitchc.onf and /etc/resolv.conf are updated appropriately.
Finally, to see how the server is resolving the client, from the client, ssh/telnet to the server. Then, execute:
tty # note the tty you're coming from
who -R | grep ${tty}
If it comes up with a name, ensure that name is in the access list. If it comes up with an IP address, correct your name resolution issue before attempting to use NFS.
HTH;
Doug
------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2006 02:33 AM
07-05-2006 02:33 AM
Re: NFS mounting issues
the syntax in /etx/exports is not correct, use:
/misc -access=my.ip.add.ress,hostname,netgroup
The stuff after the ',' is optional.
mfG Peter