linux命令学习(17)-chage
原创
©著作权归作者所有:来自51CTO博客作者chinalscxc的原创作品,请联系作者获取转载授权,否则将追究法律责任
【命令名称】 chage
【使用权限】所有人
【命令语法】 chage [-ldEImMW] 帐号名
【功能说明】修改密码的相关参数
【常用参数】 格式 YYYY-MM-DD
l 列出该帐号的详细参数
d 后面跟日期,修改shadow第三位(最近一次更改密码的日期)
I 后面跟天数,修改shadow第七位(密码失效日)
E 后面接日期,修改shadow第八位(帐号失效日)
m 后面接天数 修改shadow第四位(密码最短保留天数)
M 后面接天数 修改shadow第五位(密码多久需要更改)
W 后面接天数 修改shadow第四位 (密码过期前提配醒天数)
【命令实例】
1.查看test密码参数
[root@cxcserver ~]# chage -l test
Last password change : Jan 16, 2013
Password expires : never
Password inactive : never
Account expires : Apr 01, 2013
Minimum number of days between password change : 0
Maximum number of days between password change : 99999
Number of days of warning before password expires : 7
[root@cxcserver ~]#
2密码60天内需要修改
[cxc@cxcserver ~]$ chage -M 60 cxc
[cxc@cxcserver ~]$ sudo chage -M 60 cxc
[sudo] password for cxc:
[cxc@cxcserver ~]$ chage -l cxc
Last password change : Dec 25, 2012
Password expires : Feb 23, 2013
Password inactive : never
Account expires : never
Minimum number of days between password change : 0
Maximum number of days between password change : 60
Number of days of warning before password expires : 7
[cxc@cxcserver ~]$
下一篇:linux命令学习(18)-su
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Linux命令(22)之chage
Linux命令之chage介绍
linux 运维 服务器 交互方式 修改密码