- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: User Password
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
09-11-2002 06:40 AM
09-11-2002 06:40 AM
User Password
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:42 AM
09-11-2002 06:42 AM
Re: User Password
chmod 700 /usr/bin/passwd
Then nobody can execute it.
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:47 AM
09-11-2002 06:47 AM
Re: User Password
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:47 AM
09-11-2002 06:47 AM
Re: User Password
You sure must have auditors that don't have a clue. I wonder if we could hire them?
Why not just remove the password and set it so that it never expires?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:49 AM
09-11-2002 06:49 AM
Re: User Password
changinf the permission is good , however if you want you can leave the onus on the user to change the same , incase there is a mess up you can alwasy logina as a superuser and modify it.That is how we handle in our env.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:50 AM
09-11-2002 06:50 AM
Re: User Password
One thing you can do is turn off PW aging for that account:
sam -> users -> (highlight account) -> Actions -> Modify Security Policies -> Password Aging Policies -> set Paswword Aging = Disabled
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:51 AM
09-11-2002 06:51 AM
Re: User Password
Two other possible options:
1) get rid of the group login - bad from a security point of view, anyway.
2) control this with a process. Set the password to expire every 45 days or so. Then designate ONE person who will change the password on the first business day of each month, and who will notify the other folks of the change.
Personally, I'd get rid of the group login if possible.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 06:52 AM
09-11-2002 06:52 AM
Re: User Password
# passwd -n 0 -x 0 username
Here, it will ask for the new password on the next login and will never ask again. Another way is to manually edit the /etc/passwd file and delete the password aging characters from the 'passwd' entry. This will be seperated by a comma (,) after the encrypted passwd. You can use vipw for editing the file.