- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS 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
07-12-2001 11:22 AM
07-12-2001 11:22 AM
NFS Problem!
#ls
. not found
Could the permissions be a problem?
Any tips to troubleshoot this?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2001 11:36 AM
07-12-2001 11:36 AM
Re: NFS Problem!
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2001 12:22 PM
07-12-2001 12:22 PM
Re: NFS Problem!
On the NFS server, edit the /etc/exports file and for the entry of the filesystem, add this:
root=clientmachinename
then run the command exportfs -a and this should work
- KS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 06:55 AM
07-16-2001 06:55 AM
Re: NFS Problem!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 07:44 AM
07-16-2001 07:44 AM
Re: NFS Problem!
1. on NFS server
/etc/exports
check what is the permission for exported files or directories:ro, rw, or root, see man exports for details.
2. mount options
when you mount a file system by using mount command, the default permission is rw, however, you can change it when you need, so check your mount options
Another point I would like to mention is the mount point, if the mount point is not empty, after you mount a file system on this mount point, you can not see the previous contents of the same mount point, so try to use an empty mount point when you mount a file system from NFS server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 07:57 AM
07-16-2001 07:57 AM
Re: NFS Problem!
Sure it is permission problem.
test: allow permission to everyone.
vi /etc/exports and add only filesystem
/myfiles
#exportfs -va
If it is not working with permissions check your patch.
I had a problem that when I add netgroup in exports file the client can't see the files on that directorys. Installed PHNE_22125 patch and it works now.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 09:15 AM
07-16-2001 09:15 AM
Re: NFS Problem!
One thing that I have run across that I do not see mentioned here is the permissions for the *underlying* mount point.
I have seen problems with (for example, on the client):
ls -ald /mountpoint
dr-xr-x--- 2 root sys /mountpoint
mount server:/filesystem /mountpoint
ls -ald /mountpoint
drwxrwxr-x root sys /mountpoint
and yet have permission problems (similar to what you describe) occur within the filesystem mounted on /mountpoint...
Hope this helps.
Jim H.