Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
25
rated 0 times [  25] [ 0]  / answers: 1 / hits: 28925  / 2 Years ago, thu, may 19, 2022, 7:04:35

I'm by far no network admin, but I know on the PC I use at work, we need to change our passwords every 30 or 45 days.



Is there something like that on Ubuntu that can prompt users to change their passwords every 30, 45 or whatever days I specify?


More From » password

 Answers
0

Password Expiration



When creating user accounts, you should make it a policy to have a minimum and maximum password age forcing users to change their passwords when they expire.



To easily view the current status of a user account, use the following syntax:



sudo chage -l username

one@onezero:~$ sudo chage -l one
Last password change : Feb 15, 2012
Password expires : never
Password inactive : never
Account expires : never
Minimum number of days between password change : 0
Maximum number of days between password change : 99999
Number of days of warning before password expires : 7


To set any of these values, simply use the following syntax, and follow the interactive prompts:



sudo chage username


The following is also an example of how you can manually change the explicit expiration date (-E) to 01/31/2012, minimum password age (-m) of 5 days, maximum password age (-M) of 90 days, inactivity period (-I) of 5 days after password expiration, and a warning time period (-W) of 14 days before password expiration.



sudo chage -E 01/31/2012 -m 5 -M 90 -I 30 -W 14 username


To verify changes, use the same syntax as mentioned previously:



sudo chage -l username


For More Help


[#40323] Friday, May 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
njuash

Total Points: 402
Total Questions: 125
Total Answers: 98

Location: Jersey
Member since Sun, Dec 4, 2022
1 Year ago
njuash questions
Wed, Jun 8, 22, 11:53, 2 Years ago
Wed, Nov 30, 22, 11:42, 1 Year ago
Mon, May 30, 22, 04:33, 2 Years ago
Mon, Apr 10, 23, 03:40, 1 Year ago
;