One of our user lost her kerberos password and I am trying to reset the password using below steps
kadmin.local:
kadmin.local: change_password user@REALM.COM
Enter password for principal "user@REALM.COM":
Re-enter password for principal "user@REALM.COM":
Password for "user@REALM.COM" changed.
kadmin.local:q
Trying to login with new password after that but getting the below error
kinit user@REALM.COM
Password for user@REALM.COM:
kinit: Password incorrect while getting initial credentials
So I drop the user principal using delprinc and recreated with new password but still getting the same error
Then I've created a keytab and tried to access user using keytab, it is working
kadmin.local:xst -norandkey -k /tmp/user.keytab user@REALM.COM
$kinit user@REALM.COM -k -t /tmp/user.keytab
But the below command still shows the error.
$kinit user@REALM.COM
kinit: Password incorrect while getting initial credentials
Can someone help me on this?
Thanks
Kumar