Linux设置用户的密码有效期
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
使用命令chage加参数可以查看,更改用户密码的有效期。
1.查看用户密码有效期:
chage -l username
如下是永不会过期的类型
以下是90天有效期的类型
2.修改密码到期时间
通过参数 -M 设置账户密码的到期时间
语法: chage -M number-of-days username
(扩展:
-M 指定的是密码有效的最大天数
-m 指定的是密码有效的最小天数。不建议用-m, 使用 默认 最小天数0 即可
)
chage -M 90 user1
密码过期前几天(具体几天视设置而定)会有消息提醒
密码过期前的消息提醒信息类似如下:
Warning: your password will expire in 6 days
密码过期时,会强制用户修改密码。提示如下:
You are required to change your password immediately (password aged)
WARNING: Your password has expired.
You must change your password now and login again!
Changing password for dhinesh
(current) UNIX password:
Enter new UNIX password:
Retype new UNIX password:
账号过期时间设置
上面是对用户的密码过期时间设置,那怎么设置账号的过期时间。强烈建议不要对root用户使用!!!
可以使用 -E 选项设置账号的过期时间,时间格式为 "YYYY-MM-DD"以普通账户 进行举例:
chage -E "2023-05-21" user1
设置用户账号不过期
chage -E -1 user1
设置用户账号和密码永不过期
chage -m 0 -M 99999 -E -1 user1
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)