HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mounted drive access problems
Operating System - HP-UX
1834883
Members
2707
Online
110071
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
05-27-2003 02:13 PM
05-27-2003 02:13 PM
Greetings,
I have NFS server enabled on my 5470. Clients are able to drive-mount, but experience access permission problems: cannot see files, can see but cannot copy, cannot write to the mounted disk. /etc/exports:
/var/opt/ignite/clients -anon=2
/opt/app/data/dgn
-rw=alpha.telco.com:lonnyd.telco.com
/ -rw=alpha.telco.com:lonnyd.telco.com
"lonnyd" is NT PC, cannot access files/directories that can be accessed via telnet (using same userid/password). Used following doc to set up: http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B1031-90048&service=hpux&path=00/00/1&title=Installing%20and%20Administering%20NFS%20Services
"-rw" is supposed to allow read/write access. What is up with this? Thank you.
I have NFS server enabled on my 5470. Clients are able to drive-mount, but experience access permission problems: cannot see files, can see but cannot copy, cannot write to the mounted disk. /etc/exports:
/var/opt/ignite/clients -anon=2
/opt/app/data/dgn
-rw=alpha.telco.com:lonnyd.telco.com
/ -rw=alpha.telco.com:lonnyd.telco.com
"lonnyd" is NT PC, cannot access files/directories that can be accessed via telnet (using same userid/password). Used following doc to set up: http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B1031-90048&service=hpux&path=00/00/1&title=Installing%20and%20Administering%20NFS%20Services
"-rw" is supposed to allow read/write access. What is up with this? Thank you.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2003 03:29 PM
05-27-2003 03:29 PM
Solution
It is still possible to set file and group permissions so that user can't access the file.
Notes: You are granting access to the root directory / in yoru exportfs file.
That is giving read/right access to the entire MACHINE.
This problem can still be caused by the group membership of lonnyd
Example.
I have a file named /etc/fred
Its owned by root, the permissions on it are 700, which means root can read,write,excute it.
lonnyd can't even see it, because nobody else has acess to it.
The first diagnostic step is to check the actual permissions of the files lonnyd can't see or change.
Then ll -d /dirname for the directories. Again if lonnyd isn't in a priviledged group, this problem could be caused by permissions.
For more help, tell us this:
group id for user lonnyd
ll
on a file lonnyd can't access.
The next hint is that for file access NFS isn't a great tool. Its has bugs, security problems and even still performance issues.
CIFS/9000 samba is a little more robust. It can even be configured to grant permissions based on a NT Primary Domain Controller. It works better with windows.
Software is here:
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B8725AA
Its free.
Setup information is here.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B8725-90003/B8725-90003_top.html&con=/hpux/onlinedocs/B8725-90003/00/00/8-con.html&toc=/hpux/onlinedocs/B8725-90003/00/00/8-toc.html&searchterms=configuration%7cCIFS/9000&queryid=20030527-172640
Last in my hit parade is some documentation on NFS configuration and file permissions.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/49-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/49-toc.html&searchterms=configuration%7cfile%7cpermission%7cNFS&queryid=20030527-172754
Common NFS problems.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/42-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/42-toc.html&searchterms=configuration%7cfile%7cpermission%7cNFS&queryid=20030527-172754
Samba will not help you if you don't have valid file permissions on the files and directories in question.
I hope some of this will help.
SEP
Notes: You are granting access to the root directory / in yoru exportfs file.
That is giving read/right access to the entire MACHINE.
This problem can still be caused by the group membership of lonnyd
Example.
I have a file named /etc/fred
Its owned by root, the permissions on it are 700, which means root can read,write,excute it.
lonnyd can't even see it, because nobody else has acess to it.
The first diagnostic step is to check the actual permissions of the files lonnyd can't see or change.
Then ll -d /dirname for the directories. Again if lonnyd isn't in a priviledged group, this problem could be caused by permissions.
For more help, tell us this:
group id for user lonnyd
ll
on a file lonnyd can't access.
The next hint is that for file access NFS isn't a great tool. Its has bugs, security problems and even still performance issues.
CIFS/9000 samba is a little more robust. It can even be configured to grant permissions based on a NT Primary Domain Controller. It works better with windows.
Software is here:
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B8725AA
Its free.
Setup information is here.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B8725-90003/B8725-90003_top.html&con=/hpux/onlinedocs/B8725-90003/00/00/8-con.html&toc=/hpux/onlinedocs/B8725-90003/00/00/8-toc.html&searchterms=configuration%7cCIFS/9000&queryid=20030527-172640
Last in my hit parade is some documentation on NFS configuration and file permissions.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/49-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/49-toc.html&searchterms=configuration%7cfile%7cpermission%7cNFS&queryid=20030527-172754
Common NFS problems.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/42-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/42-toc.html&searchterms=configuration%7cfile%7cpermission%7cNFS&queryid=20030527-172754
Samba will not help you if you don't have valid file permissions on the files and directories in question.
I hope some of this will help.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
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-28-2003 01:43 PM
05-28-2003 01:43 PM
Re: NFS mounted drive access problems
I have a feeling your UID's are not consistent across systems. You should reconsider exporting / as rw, which is the whole system!
Are you trying to run PC nfs to the NT client? Are the pc nfs daemons running?
Are you trying to run PC nfs to the NT client? Are the pc nfs daemons running?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 10:04 AM
05-29-2003 10:04 AM
Re: NFS mounted drive access problems
Thank you! I was able to get functionality by changing mount-point permissions. Root mount only for pre-prod testing, yes, bad news!
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