在 Linux 中创建用户账号时,设置用户密码是一件基本的事情。每个人都使用 passwd 命令跟上用户名,比如 passwd USERNAME 来为用户设置密码。
确保你一定要设置一个难以猜测的密码,这可以帮助你使系统更安全。我的意思是,密码应该是字母、符号和数字的组合。此外,出于安全原因,我建议你至少每月更改一次密码。
当你使用 passwd 命令时,它会要求你输入两次密码来设置。这是一种设置用户密码的原生方法。
如果你不想两次更新密码,并希望以不同的方式进行更新,怎么办呢?当然,这可以的,有可能做到。
如果你是 Linux 管理员,你可能已经多次问过下面的问题。你可能、也可能没有得到这些问题的答案。
无论如何,不要担心,我们会回答你所有的问题。
? 如何用一条命令更改用户密码?? 如何在 Linux 中为多个用户更改为相同的密码?? 如何在 Linux 中更改多个用户的密码?? 如何在 Linux 中为多个用户更改为不同的密码?? 如何在多个 Linux 服务器中更改用户的密码?? 如何在多个 Linux 服务器中更改多个用户的密码?
方法-1:使用 passwd 命令
passwd 命令是在 Linux 中为用户设置、更改密码的标准方法。以下是标准方法。
#passwdrenu
Changingpasswordforuser renu.
Newpassword:
BAD PASSWORD:Thepassword contains the user nameinsome form
Retypenewpassword:
passwd:all authentication tokens updated successfully.
如果希望在一条命令中设置或更改密码,运行以下命令。它允许用户在一条命令中更新密码。
#echo"new_password"|passwd--stdin thanu
Changingpasswordforuser thanu.
passwd:all authentication tokens updated successfully.
方法-2:使用 chpasswd 命令
chpasswd 是另一个命令,允许我们为 Linux 中的用户设置、更改密码。如果希望在一条命令中使用 chpasswd 命令更改用户密码,用以下格式。
#echo"thanu:new_password"|chpasswd
方法-3:如何为多个用户设置不同的密码
如果你要为 Linux 中的多个用户设置、更改密码,并且使用不同的密码,使用以下脚本。
为此,首先我们需要使用以下命令获取用户列表。下面的命令将列出拥有 /home 目录的用户,并将输出重定向到 user-list.txt 文件。
#cat/etc/passwd|grep"/home"|cut-d":"-f1>user-list.txt
使用 cat 命令列出用户。如果你不想重置特定用户的密码,那么从列表中移除该用户。
#catuser-list.txt
centos
magi
daygeek
thanu
renu
创建以下 shell 小脚本来实现此目的。
#vipassword-update.sh
#!/bin/sh
foruserin`more user-list.txt`
do
echo"[email protected]"|passwd--stdin"$user"
chage-d0$user
done
给 password-update.sh 文件设置可执行权限。
#chmod+x password-update.sh
最后运行脚本来实现这一目标。
#./password-up.sh
magi
Changingpasswordforuser magi.
passwd:all authentication tokens updated successfully.
daygeek
Changingpasswordforuser daygeek.
passwd:all authentication tokens updated successfully.
thanu
Changingpasswordforuser thanu.
passwd:all authentication tokens updated successfully.
renu
Changingpasswordforuser renu.
passwd:all authentication tokens updated successfully.
方法-4:如何为多个用户设置相同的密码
如果要在 Linux 中为多个用户设置、更改相同的密码,使用以下脚本。
#vipassword-update.sh
#!/bin/sh
foruserin`more user-list.txt`
do
echo"new_password"|passwd--stdin"$user"
chage-d0$user
done
方法-5:如何在多个服务器中更改用户密码
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。