- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 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
10-10-2006 12:13 AM
10-10-2006 12:13 AM
NFS Problem
i have nfs server(planet)with /data1 filesystem exported to nfs client(moon).
i have mounted the /data1 on moon.
now i'm logging in with the username dba on moon and creating a file name "guru". if i see the permission of file "guru", it's owner and group is showing as dba.
now i going to the nfs server(planet)logging in with root user and if i see the permission of the same file, it's showing the different owner and group.
What may be the possiblity of this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 12:20 AM
10-10-2006 12:20 AM
Re: NFS Problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 12:21 AM
10-10-2006 12:21 AM
Re: NFS Problem
owners and groups are referred to as numeric values, which are mapped to ids via /etc/passwd and /etc/group.
for example is user no. 1 in /etc/passwd mapped to "root".
The mapping in those two mentioned files are problably different on planet and moon!
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 12:24 AM
10-10-2006 12:24 AM
Re: NFS Problem
the user details on moon and planet do not match.
You have created file "guru" on /data1 on moon as dba.
If you look from planet the numeric id, which is the real identifier of ownership on the file is taken from /etc/passwd on planet.
So for example:
on moon
user dba (id 10) group dba (id 15)
on planet
user fred (id 10) group mail (id 15)
So check your /etc/passwd and /etc /group files on both machines.
Either use/create a common user,use NIS or change permission to 777.
If this answer helped please see:
http://forums1.itrc.hp.com/service/forums/helptips.do?#28
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 08:36 PM
10-10-2006 08:36 PM
Re: NFS Problem
Mark Syder (like the drink but spelt different)