- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- proxy login Ids
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
04-09-2002 09:08 PM
04-09-2002 09:08 PM
proxy login Ids
I would like to create say 5 unique user Ids (peer1, peer2..) with their own passwords etc, but when these users log in, they should login as 'master' internally without their knowledge and have all the previleges that the master would have. Is this possible and if so, how can I achieve this. BR.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 09:18 PM
04-09-2002 09:18 PM
Re: proxy login Ids
This would depend on how exactly these users are going to log in. Say they are connecting from their Windows NT workstations and only need access to that specific directory, you could use Samba (and create a directory mapping) to accomplish this. If they actually need access to the Unix server (in order to execute commands) you could use a tool like sudo to accomplish it (http://www.courtesan.com/sudo/)
As you can see ... it all depends on what you are trying to accomplish.
Regards,
Tom Geudens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 09:45 PM
04-09-2002 09:45 PM
Re: proxy login Ids
You can get already compiled versions from the HP porting centre:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sudo-1.6.2b1/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 09:45 PM
04-09-2002 09:45 PM
Re: proxy login Ids
Define a group 'mygroup', and assign all these users 'master'. 'peer1', 'peer2', etc. to the group 'mygroup'.
Grant all permissions on the directory to the group (chmod g+w,g+r,g+x).
This way, all the users will have full access to the directory, irrespective of their login-id.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 10:13 PM
04-09-2002 10:13 PM
Re: proxy login Ids
I would like the users peer1,peer2 do the same but without realising that they are updating the config files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 11:23 PM
04-09-2002 11:23 PM
Re: proxy login Ids
Ok, so your users need to execute commands on the server as user "master". I would definitely go for sudo then. You can even limit WHICH commands they can execute as "master".
Your second requirement is tricky though. I know of no way to limit the number of people that login as a specific user (yes, I know one ... make sure that only one person has the password :-). But maybe someone else does ...
Hope this helps,
Tom Geudens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 01:18 AM
04-10-2002 01:18 AM
Re: proxy login Ids
chmod u+s
Regarding your second requirement, you could add a small check in the .profile of the peers to check if master is logged in.
HTH
