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 [email protected]
Enter password for principal "[email protected]":
Re-enter password for principal "[email protected]":
Password for "[email protected]" changed.
kadmin.local:q
Trying to login with new password after that but getting the below error
kinit [email protected]
Password for [email protected]:
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 [email protected]
$kinit [email protected] -k -t /tmp/user.keytab
But the below command still shows the error.
$kinit [email protected]
kinit: Password incorrect while getting initial credentials
Can someone help me on this?
Thanks
Kumar