passwd:redhat 上的身份验证失败
我有一个应用程序(APP1),它只能由具有 root 权限的用户执行,但不能由 root 执行。
因此我创建了另一个用户 root1 :
adduser -u 0 -o -g 0 -G 0,1,2,3,4,6,10 -M root1
然后,当我尝试为该用户分配密码时,身份验证失败。
[root]# passwd root1
更改用户 root1 的密码。
新的 UNIX 密码:
错误密码:它基于字典单词
重新输入新的 UNIX 密码:
passwd:身份验证失败
我在谷歌上查找了很多并尝试了很多建议的方法,但没有一个解决了这个错误。
您能否帮我解决上述错误,以便我可以使用root1登录系统来执行应用程序(APP1)。
谢谢,
I have an application (APP1) which can only be executed by a user with root privileges but not by root.
Hence I have created another user root1 :
adduser -u 0 -o -g 0 -G 0,1,2,3,4,6,10 -M root1
And then when I am trying to assign a password to this user I get an authentication failure.
[root]# passwd root1
Changing password for user root1.
New UNIX password:
BAD PASSWORD: it is based on a dictionary word
Retype new UNIX password:
passwd: Authentication failure
I looked up a lot on google and tried lot of things suggested but none of them resolved this error.
Could you please help me in resolving the above error, so that I can login to the system using root1 to execute the application(APP1).
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是你的密码。您无法将超级用户密码更改为非常简单且可猜测的内容,例如“qwerty”。
此外,红帽还有 一篇关于密码安全的好文章。
The problem is your password. You cannot change the super user password to something really easy and guessable like "qwerty".
Also, Red Hat has a nice article about password security.