As a Linux administrator, I can change any user's password, assuming I know the right magic incantation. Here are two: one traditional and another based on the 
usermod command:
- Traditional way:
 # passwd [USERNAME]
 
- Using the usermodcommand:
 # usermod -p $(openssl passwd) [USERNAME]
 
No comments:
Post a Comment