- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Password Management
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
08-12-2008 03:40 AM
08-12-2008 03:40 AM
Password Management
As part of an internal audit report we're being told that we need to have all our passwords reset on all our boxes every 90 days.
We have about 120 servers with numerous user ID's so I'm just wondering if anyone would know a good way of doing this?
We do have a large Windows domain with Active Directory so we could link into that but as far as systems management software goes we're hitting budget problems.
Would anyone here have a) A good money no problem solution and b) On a shoestring using things like scripts solution?
Also (I'll post a seperate question for this) as we now need to automate how we install patches to all our servers is there a package that could cover both of these requirements?
Most of our servers only run Weblogic / Oracle / Apache
Thanks,
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 03:59 AM
08-12-2008 03:59 AM
Re: Password Management
sam has a management feature depending on our OS version that can set up all users to have to change their passwords every 90 days.
Or you can use the passwd command to make a pass and force expiration and such.
while read -r DATA
do
username=$(echo $DATA |awk -F: '{print $1}')
passwd -f $username -n 7 -w 5 -x 90
done < copy of /etc/passwd
-f will force an immediate password change
-n will set the minimum times between changes to 7 days
-w will warn the user 5 days before expiration
-x will set the expiration at 90 days.
Problem solved.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 04:00 AM
08-12-2008 04:00 AM
Re: Password Management
Forget your next question.
http://docs.hp.com/en/5992-4020/index.html
Patch management guide.
Seems based on your stated use of the systems user passwords are not a big issue. The auditors are just harassing you to justify their fees.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 05:35 AM
08-12-2008 05:35 AM
Re: Password Management
I understand it is a challenge to get working but with 120 servers and alot of userids it just may be worth the effort.
And it is free. www.software.hp.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 05:58 AM
08-12-2008 05:58 AM
Re: Password Management
The part of the question that I omitted is that I'm really looking for a way of automating this process. If we have to change the root passwords for example I'd like to have an app that could log on, change the password to a new password and then update a spreadsheet/database/whatever with the new password.
Would you recommend using a script with trusted ssh connections to do something like this or is there an expensive software solution that would do everything for us?
I've started a new thread in the patching forum and I'll add my new questions I've gotten from that great patching doc into that :o)
Thanks for the help so far, really appreciate it!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 06:15 AM
08-12-2008 06:15 AM
Re: Password Management
software i found:
http://www.symark.com/products/ppfaq.html
if you'd like to write your own script: consider to look at expect tool.you can find it here:
http://hpux.connect.org.uk/hppd/hpux/Tcl/expect-5.43/
Kenan.