Linux chage初学者命令教程(6个示例)

Linux chage初学者命令教程(6个示例)

Linux命令行提供了几种用户管理工具(其中一些我们已经讨论过 )。 一个这样的实用程序是chage ,它允许您调整密码到期信息。 在本教程中,我们将使用一些易于理解的示例来讨论此工具。 但在我们深入研究之前,值得一提的是,这里的所有示例都在Ubuntu 18.04 LTS机器上进行了测试。

Linux chage命令

如上所述,chage命令允许您调整用户密码到期信息。 以下是它的语法:

chage [options] LOGIN

以下是手册页中所说的内容:

       The chage command changes the number of days between password changes
       and the date of the last password change. This information is used by
       the system to determine when a user must change his/her password.

以下是一些Q&A风格的示例,可以让您对chage命令的工作原理有所了解:

Q1。 如何查看当前密码到期信息?

要查看用户的当前密码到期日期信息,请使用-l命令行选项。

chage -l [USERNAME]

这是一个例子:

chage -l himanshu

以下是我在系统上生成的输出:

Last password change                    : Jul 26, 2018
Password expires                     : never
Password inactive                    : never
Account expires                        : never
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

所以目前,密码设置为“从不”到期。

Q2。 如何更改密码到期日期?

您可以使用-M命令行选项来执行此操作,该选项要求您传递一个数字(指代密码有效的最大天数)。

例如:

chage -M 1000 himanshu

请注意,此操作需要root权限。

因此,您可以在上面的屏幕截图中看到,密码到期时间已设置为2021年4月21日。

请注意,您还可以使用-m命令行选项,该选项用于设置密码更改之间的最小天数。 我们上面讨论的-M选项设置密码有效的最大天数。

Q3。 如何更改上次密码更改日期?

您可以使用-d命令行选项调整上次密码更改日期。 作为输入,您可以将数字传递给此选项或完整日期。 以下是手册页的解释:

 -d, --lastday LAST_DAY
           Set the number of days since January 1st, 1970 when the password
           was last changed. The date may also be expressed in the format
           YYYY-MM-DD (or the format more commonly used in your area).

以下是一个例子:

因此,您可以看到“上次密码更改”字段的值已成功更改。

Q4。 密码过期前如何警告用户?

chage命令还允许您设置在需要更改密码之前的警告天数。 这可以使用-W命令行选项完成。

-W, --warndays WARN_DAYS
           Set the number of days of warning before a password change is
           required. The WARN_DAYS option is the number of days prior to the
           password expiring that a user will be warned his/her password is
           about to expire.

例如:

chage -W 10 himanshu

此命令将确保用户在密码设置为过期前10天才能看到密码到期警告。

Q5。 如何锁定帐户?

使用-E命令行选项锁定帐户。 它接受输入的方式类似于我们上面讨论的-W选项。 供您参考,以下是手册页对其的解释:

-E, --expiredate EXPIRE_DATE
           Set the date or number of days since January 1, 1970 on which the
           user's account will no longer be accessible. The date may also be
           expressed in the format YYYY-MM-DD (or the format more commonly
           used in your area). A user whose account is locked must contact the
           system administrator before being able to use the system again.

           Passing the number -1 as the EXPIRE_DATE will remove an account
           expiration date.

例如:

chage -E 2019-06-21 himanshu

以上命令将确保用户'himanshu'的帐户将从2019年6月21日开始无法访问。

Q6。 如果没有任何选项使用chage会发生什么?

这是在这种情况下发生的事情:

       If none of the options are selected, chage operates in an interactive
       fashion, prompting the user with the current values for all of the
       fields. Enter the new value to change the field, or leave the line
       blank to use the current value. The current value is displayed between
       a pair of [ ] marks.

结论

如果您是Linux系统管理员,或负责Linux机器上的用户管理的人员,则此命令值得保留在您的小猫中。 我们在这里介绍了几个chage命令行选项。 要了解更多信息,请访问chage手册页

赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏