查看当前主机的加密算法:
[root@realserver ~]# authconfig --test |grep hashing
password hashing algorithm is sha512
设置使用sha512算法:
# authconfig --passalgo=SHA512 --update
最后,所有用户都需要重新设置密码才能生效。可以使用# chage -d 0 root 强制该用户下次登录修改密码。
查看当前主机的加密算法:
[root@realserver ~]# authconfig --test |grep hashing
password hashing algorithm is sha512
设置使用sha512算法:
# authconfig --passalgo=SHA512 --update
最后,所有用户都需要重新设置密码才能生效。可以使用# chage -d 0 root 强制该用户下次登录修改密码。