- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS Mount Related Problem
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-21-2007 05:59 AM
04-21-2007 05:59 AM
NFS Mount Related Problem
I am getting the following error while mounting the remote file system on client machine.
# mount lngappdr:/ /tmp/abcd
Permission denied
the secenario is there is one server named lngappdr which i have made NFS server and lngprddr which i have made NFS client. i am getting the following error while mounting the /tmp directory in NIS client.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 06:16 AM
04-21-2007 06:16 AM
Re: NFS Mount Related Problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 06:38 AM
04-21-2007 06:38 AM
Re: NFS Mount Related Problem
# vi /etc/exports
"/etc/exports" 5 lines, 87 characters
/sharing
/var/opt/ignite/clients -anon=2
/tmp -root=lngprddr
/home -access=lngprddr
/etc/passwd -root=lngprddr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 09:30 AM
04-21-2007 09:30 AM
Re: NFS Mount Related Problem
1. You can only mount the file systems as super user.
2.
> # mount lngappdr:/ /tmp/abcd
What actually you are trying here is to mount from the root dir on lngappdr to the /tmp/abcd on your client box.
Can you explain what is your actual objective. Which dir you want to mount from NFS server to which dir on client. So it will be more easy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 09:39 AM
04-21-2007 09:39 AM
Re: NFS Mount Related Problem
On the client:
id -a
pwd
showmount -e lngappdr (nfs server name)
grep NFS_CLIENT /etc/rc.config.d/nfsconf
ps -ef|grep -E 'rpc|biod'
and
your mount command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 10:46 PM
04-21-2007 10:46 PM
Re: NFS Mount Related Problem
looking at the list of exports of the server
/sharing
/var/opt/ignite/clients -anon=2
/tmp -root=lngprddr
/home -access=lngprddr
/etc/passwd -root=lngprddr
you see, that '/' is NOT exported - so it's ok you get a 'permission denied'.
Try
mount lngappdr:/home /tmp/abcd
This should succeed.
mfG Peter