Hey, I was wondering if why I keep getting these auth failure logs when usermin and webmin startup. These show up in /var/log/secure:
perl: pam_unix(webmin:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost= user=root
perl: pam_unix(usermin:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost= user=root
I believe I have PAM setup correctly, here are my webmin and usermin files in /etc/pam.d
[root@dwarf pam.d]# more usermin
#%PAM-1.0
auth required pam_unix.so shadow nullok
account required pam_unix.so
password required pam_unix.so shadow nullok use_authtok
session required pam_unix.so
[root@dwarf pam.d]# more webmin
#%PAM-1.0
auth required pam_unix.so shadow nullok
account required pam_unix.so
password required pam_unix.so shadow nullok use_authtok
session required pam_unix.so
Any ideas?