4

Why is the following log produced?

pam_unix(sshd:auth): auth could not identify password for [admin] - sshd[6968] 

Is it because of a timeout, or is there some other reason?

Aaron
  • 2,968
  • 1
  • 23
  • 36
soma sekhar
  • 165
  • 1
  • 1
  • 5
  • 2
    ADD : One of the pam libraries in the sshd pam config file is making the password to be null and hence pam_unix does not get any password for authentication. Problem solved by editing the custom pam library. – soma sekhar Apr 09 '14 at 16:44

2 Answers2

0

One of the pam modules have made the password null and it is passed to the pam_unix. Once I fixed it, it started working fine. Thanks.

soma sekhar
  • 165
  • 1
  • 1
  • 5
-1

Check your /etc/ssh/sshd_config file. If this user admin is listed as DenyUsers. Comment the particular line and restart the sshd service.

chicks
  • 3,793
  • 10
  • 27
  • 36
rootslash
  • 102
  • 3