- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /etc/netgroup config
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-26-2004 08:03 PM
10-26-2004 08:03 PM
/etc/netgroup config
i need to achive the requirement below:
i want to share some nfs file system to 2 host but to certain users . not root.
this is what i've done:
NSF server
=========
/etc/netgroup:
shareuser (host1,luser1, ), (host2,user2, )
/etc/exports:
/test -access=shareuser
# exportfs -a
# showmount -e <<== can see entry
NFS client
=========
log in as root , can mount /test ?? why
i do not use NIS, is thsi mandotory ? kindly guide me.. thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 08:12 PM
10-26-2004 08:12 PM
Re: /etc/netgroup config
check man netgroup:
For remote mounts, the information in netgroup classifies machines.for remote logins and remote shells, it classifies users.
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 08:17 PM
10-26-2004 08:17 PM
Re: /etc/netgroup config
You have to be root to mount NFS filesystems. That's the behaviour. Your export options will not prevent root from mounting the NFS mount points.
Try writing into that directory.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 08:18 PM
10-26-2004 08:18 PM
Re: /etc/netgroup config
From man page:
"For remote mounts, the information in netgroup classifies machines;
for remote logins and remote shells, it
classifies users. "
What it it mean by remote mount ?
I'm accessing the NFS client via telnet session. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 08:21 PM
10-26-2004 08:21 PM
Re: /etc/netgroup config
I've givent eh user1 & user2 root acces(UID=0).
When i login as root , i can write into the files shared
when i login as user1 & user2, i can do the same.
any idea?