Manpages

名 称

chpasswd - 批 量 更 新 密 码

大 纲

chpasswd [选 项 ]

描 述

The chpasswd command reads a list of user name and password pairs from standard input and uses this information to update a group of existing users. Each line is of the format:

user_name:password

By default the passwords must be supplied in clear-text, and are encrypted by chpasswd. Also the password age will be updated, if present.

By default, passwords are encrypted by PAM, but (even if not recommended) you can select a different encryption method with the -e, -m, or -c options.

Except when PAM is used to encrypt the passwords, chpasswd first updates all the passwords in memory, and then commits all the changes to disk if no errors occurred for any user.

When PAM is used to encrypt the passwords (and update the passwords in the system database) then if a password cannot be updated chpasswd continues updating the passwords of the next users, and will return an error code on exit. 此 命 令 一 般 用 于 需 要 一 次 创 建 很 多 用 户 的 大 型 系 统 。

选 项

The options which apply to the chpasswd command are:

-c, --crypt-method METHOD 使 用 指 定 的 方 法 加 密 密 码 。 可 用 的 方 法 有 DES, MD5, NONE, and SHA256 或 SHA512, 前 提 是 您 的 libc 支 持 这 写 方 法 。 默 认 , 使 用 PAM 来 加 密 密 码 。

-e, --encrypted 提 供 的 密 码 是 已 经 加 密 了 的

-h, --help 显 示 帮 助 信 息 并 退 出 。

-m, --md5 如 果 提 供 的 密 码 没 有 加 密 , 则 使 用 MD5 加 密 而 不 是 DES。

-R, --root CHROOT_DIR

Apply changes in the CHROOT_DIR directory and use the configuration files from the CHROOT_DIR directory. Only absolute paths are supported.

-s, --sha-rounds ROUNDS 使 用 指 定 次 数 的 轮 转 来 加 密 密 码 。 值 0 表 示 让 系 统 为 加 密 方 法 选 择 默 认 的 轮 转 次 数 (5000)。 会 强 制 最 小 1,000, 最 大 9,9999,9999 您 只 可 以 对 SHA256 或 SHA512 使 用 此 选 项 。

By default, the number of rounds is defined by the SHA_CRYPT_MIN_ROUNDS and SHA_CRYPT_MAX_ROUNDS variables in /etc/login.defs.

CAVEATS

记 住 要 设 置 权 限 或 者 掩 码 来 阻 止 其 它 用 户 对 未 加 密 文 件 的 读 取 。

配 置 文 件

The following configuration variables in /etc/login.defs change the behavior of this tool:

文 件

/etc/passwd 用 户 账 户 信 息 。

/etc/shadow 安 全 用 户 账 户 信 息 。

/etc/login.defs

Shadow 密 码 套 件 配 置 。

/etc/pam.d/chpasswd

PAM configuration for chpasswd.

参 见

passwd(1), newusers(8), login.defs(5), useradd(8).