- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Synchronization of password in MC/SG
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-26-2000 07:53 PM
07-26-2000 07:53 PM
Synchronization of password in MC/SG
Is there a way to synchronnise the password in real time for users in MC/SG environment beside using NIS service?
Thanks in advance,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2000 11:19 PM
07-26-2000 11:19 PM
Re: Synchronization of password in MC/SG
You can copy /etc/passwd file from one cluster node to the other using cron.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2000 11:44 PM
07-26-2000 11:44 PM
Re: Synchronization of password in MC/SG
This way it was sync'd instantly. You can do this with a shell script as well but its a bit more insecure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 12:48 AM
07-27-2000 12:48 AM
Re: Synchronization of password in MC/SG
This would probably have to be a root suid program (/usr/bin/passwd is already) because it could be called by any user.
You have to be careful when applying patches however, because a new passwd binary could be installed - overwriting your replacement.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 08:35 AM
07-27-2000 08:35 AM
Re: Synchronization of password in MC/SG
This both protects you from having your program overwritten by patches/upgrades and preserves the capability to change passwd on only one system if you ever have a need to do so.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2000 05:03 AM
07-31-2000 05:03 AM
Re: Synchronization of password in MC/SG
We have a 2 node cluster where one box is serving as a database server (no one logs in here) and the 2nd, an application server. (everyone logs in here) On each server I have created a base /etc/passwd file with users that would need to log into each machine, i.e DBA, etc. This file is also copied to an "etc" directory on a volume that moves between both systems on the application package. The /etc/passwd file is replaced by a symbolic link to the location of this file i.e. /etc/passwd -> /u/etc/passwd. With the application package down I create that directory so that when the package is not running it still links to the same file.
When new accounts are created they are only created from the application package.
There are obvious drawbacks to this, as in what if someone in the base password file changes their password. Because our environment is small I can easily maintain those updates. You also need to remember to update the underlying password file in the event that the application package is still running when the password file is updated. This also does not work well for large clusters.
I'm in the process of changing this as I want to move to NIS as we are needing to maintain the passwords among several machines rather than 2.
Hope this helps.
-Steve