passwd - change login password and password attributes
uid=0(root) gid=0(root) groups=0(root),1(other),2(bin),3(sys),4(adm),
5(uucp),6(mail),7(tty),8(lp),9(nuucp),12(daemon)
I have to be root in order to change the password for another user or root. In the example below, I am changing the password for user 'devuser'.
In Solaris you sepecify what method to use for chaning the password. In the example below, I am using the option '-r files' to update the local /etc/shadow file. The list of options you can you can provide are 'r files' for local /etc/shadow file, '-r ldap' for LDAP and '-r nis' to use the NIS depending on your company configuration and security policies in which method it authenticates.
New Password:
Re-enter new Password:
passwd: password successfully changed for devuser
I used the command below in order to make sure the password for user 'devuser' does not expire.
passwd: password information changed for devuser
In Solaris you sepecify what method to use for chaning the password. In the example below, I am using the option '-r files' to update the local /etc/shadow file.
New Password:
Re-enter new Password:
passwd: password successfully changed for root
I used the command below in order to make sure the password for user 'root' does not expire.
passwd: password information changed for root
devuser:x:101:10:WahidLutfy:/home/devuser:/bin/bash
devuser:YeyCTAA/10$RABrVPeeLflc1ciAAkmxv5ty2l0PnMY31x8xzDkK11:15061::::::
root:XWezV9Mp6p$vjhUtNalkjlkjlkluhB9888jkkhkkkYMWc453BpLxIc9:15061::::::
Please click on " man passwd " to see the Manual Page for this command.