Linux set or change user password how to
Task: Set or change user password
Type passwd command as follows>
$ passwdOutput:
Changing password for oracle
(current) UNIX password:
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
The user is first prompted for his/her old password, if one is present. This password is then encrypted and compared against the stored password. The user has only one chance to enter the correct password. The super user is permitted to bypass this step so that forgotten passwords may be changed.
A new password is tested for complexity. As a general guideline, passwords should consist of 6 to 8 characters including one or more from each of following sets:
=> Lower case alphabetics
=> Upper case alphabetics
=> Digits 0 thru 9
=> Punctuation marks
Task: Change for any user
You must login as root user, type the command to change password for user vivek:
# passwd oracle
Output:
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Where,
- oracle - is username or account name.
Task: Change group password
When the -g option is used, the password for the named group is changed. For example change password for group sales:
# passwd -g sales
The current group password is not prompted for. The -r option is used with the -g option to remove the current password from the named group. This allows group access to all members. The -R option is used with the -g option to restrict the named group for all users.
Comments
Post a Comment