Change personal account password If ordinary users want to change their personal account passwords, they only need to run the passwd command without any other commands:
Sample output: Changing password for nick (current) UNIX password: Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully The system will prompt us to enter the current password first. If the password is correct, we will be asked to re-enter and confirm the new password. The next time you log in to the Linux system, you can use the new password. NOTE: When you enter your password, it will not be displayed on the screen. Change another user's password As a normal user, you can only change your own password. However, the root user and users with sudo privileges can change the passwords of other users. We need to log in as root user and type the following command to change the password for user nick: $ passwd nick Or use sudo command $ sudo passwd nick Output: You will be prompted to enter and confirm a new password Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully Force the user to change password at next login By default, passwords are set to never expire. If you want to force the user to change their password at the next login, you need to use the passwd command with the --expireoption followed by the user's username, for example: $ sudo passwd --expire nick This will immediately expire the password for the user account. The next time the user tries to log in with their old password, a message will appear forcing them to change their password: $ ssh [email protected] Output: WARNING: Your password has expired. You must change your password now and login again! Changing password for nick. (current) UNIX password: Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully Connection to 192.168.121.209 closed. After the user sets a new password, the connection is closed. You may also be interested in:
|
<<: express project file directory description and detailed function description
>>: mysql executes sql file and reports error Error: Unknown storage engine'InnoDB' solution
Preface Today, I was reviewing the creational pat...
This article shares the installation and configur...
Preface Vue provides a wealth of built-in directi...
Overview Volume is the abstraction and virtualiza...
Before reading this article, I hope you have a ba...
Background Recently, I encountered such a problem...
This article shares the specific code of Vue to i...
1. Why create an index? (Advantages) This is beca...
<br />Structure and hierarchy reduce complex...
Download source code git clone https://github.com...
1. AIDE AIDE (Advanced Intrusion Detection Enviro...
Database Table A: CREATE TABLE task_desc_tab ( id...
This article records the detailed installation tu...
Table of contents Preface What are asynchronous i...
Preface To solve the single point of failure, we ...