- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to change UNIX 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
02-23-2007 06:51 AM
02-23-2007 06:51 AM
How to change UNIX password
I've never used sys admin utility on this machine. SAM is not working.
I'm sure there must be some other utility that previous system administrator used. Can anybody give me some clue? I'm working on a DEV environment and i've root access.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 06:57 AM
02-23-2007 06:57 AM
Re: How to change UNIX password
# man passwd
# passwd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 06:58 AM
02-23-2007 06:58 AM
Re: How to change UNIX password
When I said man passwd that means enter "man passwd" from the shell to display the online documentation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 06:59 AM
02-23-2007 06:59 AM
Re: How to change UNIX password
To change 'root' login as 'root' and do:
# passwd
You will be prompted to verify your entry. Up to 8-characters are significant on untrusted systems. See the manpages for 'passwd' for more information. I would strongly advise you to have a second 'root' session open when you do this and verify that your change works before you logoff all sessions.
To change a non-root account password, you do (as root):
# passwd account_name
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 06:59 AM
02-23-2007 06:59 AM
Re: How to change UNIX password
The only utility I am aware of is SAM.
However, you can change a password with the passwd command
passwd by itself will change the password for the current ID
passwd
SAM should work - look at the samlog and the syslog to diagnose why it is not working...........
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 09:13 AM
02-23-2007 09:13 AM
Re: How to change UNIX password
I was aware of passwd command. I think we have some other utility (other than sam) on this 11.11 UNIX that is used for sys admin purposes.
Anyway, i'll find that out. For now i've change the password using passwd command.
Thank you all.