作为程序员一定要保持良好的睡眠,才能好编程

linux 如何修改passwd的密码 设置密码

发布时间:2020-02-17

linux下如何更改密码?

[root]# passwd
Changing password for user root.
New password:
Retype new password:
Sorry, passwords do not match.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

出现 successfully 这句话,证明已经更改成功


passwd.jpg



还有一种较为简单的修改密码:


[root@localhost scripts]# useradd -d /data/james -g myftp james

[root@localhost scripts]# echo "james123" | passwd --stdin james

Changing password for user james.

passwd: all authentication tokens updated successfully.


给用户james 设置密码 为 james123