linux生成随机密码

安装:yum install expect -y

示例:

[root@longquan  ~]# mkpasswd root
A0gssX9w(

直接生成并修改root密码,如用户不存在,则提示未知用户

生成一个长度为16,至少4个数字,至少....的密码

[root@longquan  ~]# mkpasswd -l 16 -d 4 -c 6 -C 4 -s 2
lWy43-5bD7}RheQu

-l 长度 -d 数字 -c 小写 -C 大写 -s 特殊字符

相关资料:man mkpasswd


你可能感兴趣的:(mkpasswd,随机密码)