观天

Linux系统密码复杂度配置

设置Linux系统密码复杂度策略,避免系统账户出现弱口令现象,不符合要求要求管理员重新设置。

1、执行:
touch /etc/security/opasswd
chown root:root /etc/security/opasswd
chmod 600 /etc/security/opasswd

2、在 vim /etc/pam.d/system-auth
添加
remember=5

密码复杂度:

注释这一行 #password requisite pam_pwquality.so try_first_pass local_users_only retry=3 authtok_type=

添加:password requisite pam_pwquality.so try_first_pass local_users_only retry=3 authtok_type= minlen=8 lcredit=-1 ucredit=-1 dcredit=-1 ocredit=-1 enforce_for_root

 

 

 

 

赞(3)
未经允许不得转载:观天 » Linux系统密码复杂度配置