Authentication failure

今天客户打电话说在使用su命令切换用户时无法切换,报“无效密码”的错误信息,然后让用户收集相关日志信息,在messages中发现有如下字样:

Feb 12 12:25:21 cqbx1 telnetd[27433]: ttloop: peer died: EOF
Feb 12 12:25:21 cqbx1 login[26996]: FAILED LOGIN 1 FROM 10.252.106.119 FOR cpai, Authentication failure
Feb 12 12:25:23 cqbx1 telnetd[27453]: ttloop: peer died: EOF
Feb 12 12:25:24 cqbx1 remote(pam_unix)[27395]: authentication failure; logname= uid=0 euid=0 tty=ttyp545 ruser= rhost=10.252.127.80  user=cpai

当看到这个信息时,第一个想到的就是用户没有给cpai用户设置密码,但经过电话沟通,用户反映已经重置密码好多次了,所以又继续分析其它日志信息,又发现以下信息:
telnetd[27051]: ttloop: peer died: EOF
Feb 12 12:24:59 cqbx1 remote(pam_unix)[27056]: bad username []
Feb 12 12:24:59 cqbx1 pam_tally[27056]: pam_tally: pam_get_uid; user?

所以就怀疑问题应该出在pam_tally模块上,于是让用户执行如下命令查看cpai用户是否被锁定:

pam_tally  --user cpai

执行结果是已经输错密码500余次,所以让用户解锁用户后,可以正常登录。

时间: 2024-10-09 11:39:06

Authentication failure的相关文章

使用su - root出现Authentication failure

使用su - root出现 Password: su: Authentication failure 原因:ubtun系统默认是没有激活root用户的 解决方法: 输入命令:sudo passwd root 显示 Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 注意: (Enter new UNIX password: )不能和(Password: )输入的相同,如果

ubuntu 突然不能 sudo成功,报错su: Authentication failure

通过查看日志: /var/log/auth.log 报错: su[9959]: PAM unable to dlopen(pam_rootok.so): /lib/security/pam_rootok.so: cannot open shared object file: No such file or directory su[9959]: PAM adding faulty module: pam_rootok.so su[9959]: PAM unable to dlopen(pam_u

Ubuntu下su:authentication failure的解决办法

$ su - rootPassword: su: Authentication failureSorry. 这时候输入 $ sudo passwd rootEnter new UNIX password: Retype new UNIX password: passwd: password updated successfully 这时候就可以进入根目录了. Ubuntu下su:authentication failure的解决办法,布布扣,bubuko.com

Ubuntu su: Authentication failure

[email protected]:~$ su - root Password: su: Authentication failure 修改密码: $ sudo passwd root Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 重新su - root 就OK了.

linux使用su切换用户提示 Authentication failure的解决方法& 复制文件时,报cp: omitting directory `XXX'

linux使用su切换用户提示 Authentication failure的解决方法:这个问题产生的原因是由于ubtun系统默认是没有激活root用户的,需要我们手工进行操作,在命令行界面下,或者在终端中输入如下命令: sudo passwd Password:你当前的密码 Enter new UNIX password:这个是root的密码Retype new UNIX password:重复root的密码然后会提示成功的信息. 在说明一点,使用su和sudo是有区别的,使用su切换用户需要

vagrant up报错 Warning: Authentication failure. Retrying...解决方案

windows下vagrant报错,老是提示Warning: Authentication failure. Retrying...,并且运行完毕后没有共享文件夹,郁闷... 网上找资料,逛论坛,终于有了解决方法,最起码能运行了,贴出来分享一下. 不废话了,下面是报错代码和解决方案: 本地环境win7,vagrant版本1.8.5,virtualbox版本5.0.4 vagrant box add centos71 vagrant-centos-7.1.box vagrant init cent

linux使用su切换用户提示 Authentication failure的解决方法

刚刚安装的虚拟机,使用的ubtun系统,进如操作系统后,简单地尝试了一下,发现无法使用shutdown命令进行关机,并且无法进行su命令,提示 Authentication failure 这个问题产生的原因是由于ubtun系统默认是没有激活root用户的,需要我们手工进行操作,在命令行界面下,或者在终端中输入如下命令: sudo passwd Password:你当前的密码 Enter new UNIX password:这个是root的密码 Retype new UNIX password:

Ubuntu linux系统下su:出现: authentication failure的解决办法

一些问题解决的办法并不是很麻烦,但如果找不到办法,就会一直拖着那里浪费时间,所以如果刚好能有一篇文章解决此问题,就可以节约大家很多时间. 在新装的ubuntu 系统下面, 我是14.0.4 不知道其它系统会不会是同样问题. 输入su命令获取root权限时, 出现了authentication failure 的问题,即身份验证失败.需要进行下面操作: sudo passwd root Enter new UNIX password: //此时输入你的密码 Retype new UNIX pass

su: authentication failure 解决方法

在Linux上切换root时,密码正确..但提示:su: authentication failure ->sudo passwd ->Password:你当前的密码 ->Enter new UNIX password:这个是root的密码 ->Retype new UNIX password:重复root的密码 然后会提示成功的信息.  使用su和sudo是有区别的,使用su切换用户需要输入所切换到的用户的密码,而使用sudo则是当前用户的密码. 原文地址:https://www