Forcing users to change their password
In Unix/Linux/*nix, you can force users to change their password by using the chage command like so:
This command set the expiration age of the password to be a time in the past. So next time the user logs in they'll be forced to change their password.
# chage -d 0 <username>
This command set the expiration age of the password to be a time in the past. So next time the user logs in they'll be forced to change their password.
| Rating: | no ratings, 0 total Votes |
| Categories: | UNIX linux passwords security |
| Added: | on Sep 30, 2008 at 11:27 am |
| Added By: | an anonymous user |

