- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX Bypass Password Security for Application ID?
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
01-05-2009 02:46 PM
01-05-2009 02:46 PM
HP-UX Bypass Password Security for Application ID?
Is there a way to bypass password parameters for certain ID's such at application ID's sitting on the system, without removing the password parameters for the entire user base on the OS?
Example: I want my administrator to have to change his password every 90 days, but I don't want to have to change the application ID on the system every 90 days.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2009 03:34 PM
01-05-2009 03:34 PM
Re: HP-UX Bypass Password Security for Application ID?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2009 04:04 PM
01-05-2009 04:04 PM
Re: HP-UX Bypass Password Security for Application ID?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2009 05:23 PM
01-05-2009 05:23 PM
Re: HP-UX Bypass Password Security for Application ID?
a) An example for Trusted System Password
database (TCB):
# /usr/lbin/modprpw -l -m mintm=0,exptm=0,expwarn=0,lftm=0
b) An example for Shadow password:
# usermod -e ''
Depending on the version of HP-UX,
usermod(1m) takes the following options:
usermod -e "" ...
usermod -e '' ...
c) Or, user SAM and/or SMH to do it via GUI.
Cheers,
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2009 05:34 PM
01-05-2009 05:34 PM
Re: HP-UX Bypass Password Security for Application ID?
Too fast typing without thinking.
"usermod -e" is for actual account expiration,
not password!
The command for password expiration is:
# passwd -x -1
From memory, to turn off password aging for
a specific user set the -x option (max age)
to -1. Setting -x to 0 disables aging and
forces a password change at the next login.
Cheers,
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2009 05:57 PM
01-05-2009 05:57 PM
Re: HP-UX Bypass Password Security for Application ID?
You'll have to set them explicitly as VK2COT says.