- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mount error in HP-UX
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
05-31-2007 10:47 PM
05-31-2007 10:47 PM
NFS mount error in HP-UX
I have created a nfs export on a HP-UX machine and trying to mount it from another HP-UX machine. While mounting it says "permission denied" . Please find below the configuration of both the systems.
NFS Server :
# hostname
windux1
# more /etc/exports
/data1 -root=windux3.ind.hp.com -access=windux3.ind.hp.com
# exportfs -va
re-exported /data1
NFS Client :
# hostname
windux3
# mount windux3.ind.hp.com:/data1 /windux1
Permission denied
# mountall
mountall: cannot mount windux1.ind.hp.com:/data1
mountall: diagnostics from mount
Permission denied
Can anyone pls help?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2007 10:58 PM
05-31-2007 10:58 PM
Re: NFS mount error in HP-UX
Check the ownership of the remote share you are trying to mount.
Try the mount with /etc/exports not having access restrictions. If that works, then the problem is the access restrictions.
Also: The remote system has information in its syslog file.
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
05-31-2007 11:03 PM
05-31-2007 11:03 PM
Re: NFS mount error in HP-UX
have you actually created your mountpoint directory with the correct permissions ?
check with ll /windux1
For more details please see:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=103925
Please also read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33
on how to reward any useful answers given to your questions.
So far you have not awarded any points !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 07:44 AM
06-01-2007 07:44 AM
Re: NFS mount error in HP-UX
mount windux1.ind.hp.com:/data1 /windux1
you're example shows export on windux1 and mount on windux3. the mount command shown is trying to mount something from windux3 to on windux3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2007 05:37 PM
06-01-2007 05:37 PM
Re: NFS mount error in HP-UX
how did you define /windux1 in your /etc/fstab on the NFS client?
Examples of configurations at my site:
NFS Client: /etc/fstab
windux3.ind.hp.com:/data1 /windux1 nfs rw,suid 0 0
NFS Server(windux3.ind.hp.com): /etc/exports
/data1 -anon=65534
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2007 12:53 AM
06-02-2007 12:53 AM
Re: NFS mount error in HP-UX
looks like you have name resolution problem
if your /etc/export is correct
try the following option
on server edit the /etc/exports with out any client information like
/oracle data1
# exportfs -a
# exportfs
one client
# mount server:/data1 /mnt
if it work then problem is entry of your clients in the /etc/exports file
then update the host file on client and master server
Regards
Safar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2007 10:05 PM
06-03-2007 10:05 PM
Re: NFS mount error in HP-UX
Your options on /etc/exports file are correct. So it ism ost possibly the name resolution problem. What kind of name resolution you are using. Otherwise, put the FQDN of the server and client on /etc/hosts on both side.
If it does not work modify the /etc/exports with the IP instead of the hostname (windux3). If you have more than one NIC and IP on the system you might get into these kind of issues. So make sure that the name resolution works ok.
ping
showmount -e server
rpcinfo -p server
Regards.