0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

初回ログイン時にパスワード変更を要求する

Posted at

やりたいこと

Linuxサーバに新規ユーザを追加した際、ユーザに対して初回ログイン時にパスワードを変更するよう求める。

1. ユーザ追加&初期パスワード設定

新規ユーザを追加し、初回ログイン時に使用する初期パスワードを設定する。

# useradd -u <UID> <ユーザ名>
# passwd <ユーザ名>
  (パスワードを入力)

2. 初期パスワードを期限切れにする

--expireオプションによって期限切れに設定する。

# passwd --expire <ユーザ名>

完了!
初回ログイン時の様子はこんな感じ

パスワード:(初期パスワードを入力)
You are required to change your password immediately (administrator enforced).
Current password:(初期パスワードを入力)
新しい パスワード:
新しい パスワードを再入力してください:
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?