HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Permission denied when mounting dir
Operating System - HP-UX
1834018
Members
2159
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
03-09-2007 12:52 AM
03-09-2007 12:52 AM
We have a HP-UX B.11.23.
We had a couple of mounts on this system, which were working well.
Suddenly we had a problem with one of the mounts : 'Stale NFS file handle'.
I have unmounted this dir, but when I try to mount this directory again, I get the following error : 'Permission denied'.
There are two remarks I would like to make :
1)Our fstab-file looks as this :
192.191.191.202:/efsd11 /mnt/efsd11 nfs rw,suid 0 0
192.191.191.202:/efsd12 /mnt/efsd12 nfs rw,suid 0 0
192.191.191.202:/efsd13 /mnt/efsd13 nfs rw,suid 0 0
The thing is, that the dirs efsd11 and efsd12 are working ok, but the dir efsd13 gives the problem.
2)We also have a separate linux system, where
these 3 dirs are mounted correctly (efsd13 also). So on that machine we don't have a problem !
What could be the problem ?
We had a couple of mounts on this system, which were working well.
Suddenly we had a problem with one of the mounts : 'Stale NFS file handle'.
I have unmounted this dir, but when I try to mount this directory again, I get the following error : 'Permission denied'.
There are two remarks I would like to make :
1)Our fstab-file looks as this :
192.191.191.202:/efsd11 /mnt/efsd11 nfs rw,suid 0 0
192.191.191.202:/efsd12 /mnt/efsd12 nfs rw,suid 0 0
192.191.191.202:/efsd13 /mnt/efsd13 nfs rw,suid 0 0
The thing is, that the dirs efsd11 and efsd12 are working ok, but the dir efsd13 gives the problem.
2)We also have a separate linux system, where
these 3 dirs are mounted correctly (efsd13 also). So on that machine we don't have a problem !
What could be the problem ?
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 01:20 AM
03-09-2007 01:20 AM
Solution
Things to check:
- DNS or any other means of hostname resolution: if the hosts are specified by name in the /etc/exports file of the NFS server, the name of the client must be written *exactly* as the NFS server sees it.
- Has someone done something on the NFS server host? Edited /etc/exports? (Maybe introduced a typo?) Run "exportfs -a"? Rebooted the server?
- Anything interesting in the syslogs, either on the NFS server or on the client? Does "dmesg" show anything that might be related?
- If you can, temporarily umount all NFS mounts from the client and run the following commands on the NFS client host:
sh /sbin/init.d/nfs.client stop
sh /sbin/init.d/nfs.core stop
sh /sbin/init.d/nfs.core start
sh /sbin/init.d/nfs.client start
This should reset as much of the NFS client subsystem as possible (the kernel components might hold some state information until the next reboot).
- DNS or any other means of hostname resolution: if the hosts are specified by name in the /etc/exports file of the NFS server, the name of the client must be written *exactly* as the NFS server sees it.
- Has someone done something on the NFS server host? Edited /etc/exports? (Maybe introduced a typo?) Run "exportfs -a"? Rebooted the server?
- Anything interesting in the syslogs, either on the NFS server or on the client? Does "dmesg" show anything that might be related?
- If you can, temporarily umount all NFS mounts from the client and run the following commands on the NFS client host:
sh /sbin/init.d/nfs.client stop
sh /sbin/init.d/nfs.core stop
sh /sbin/init.d/nfs.core start
sh /sbin/init.d/nfs.client start
This should reset as much of the NFS client subsystem as possible (the kernel components might hold some state information until the next reboot).
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 01:51 AM
03-09-2007 01:51 AM
Re: Permission denied when mounting dir
Hi,
in addition to Matti's suggestions:
- call
showmount -e 192.191.191.202
from the HP host and compare the entries.
- check if 192.191.191.202 has really mounted something under /efsd13 .
mfG Peter
in addition to Matti's suggestions:
- call
showmount -e 192.191.191.202
from the HP host and compare the entries.
- check if 192.191.191.202 has really mounted something under /efsd13 .
mfG Peter
The Universe is a pretty big place,
it's bigger than anything anyone has ever dreamed of before.
So if it's just us, seems like an awful waste of space, right?
Jodie Foster in "Contact"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2007 07:29 PM
03-11-2007 07:29 PM
Re: Permission denied when mounting dir
Thanks for the replies,
The problem was that the NFS server host was rebooted and there was a line missing in the
exports-file.
I have addes the line and issued an 'exportfs -a' statement.
That solved my problem !
The problem was that the NFS server host was rebooted and there was a line missing in the
exports-file.
I have addes the line and issued an 'exportfs -a' statement.
That solved my problem !
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP