Created 11-26-2018 07:55 PM
Hello
I'm using HDP 3.0.1 with HA
I have this error on Ranger.
I can't logon Ranger Admin
2018-11-26 19:51:59,421 [http-bio-6080-exec-5] INFO org.apache.ranger.security.handler.RangerAuthenticationProvider (RangerAuthenticationProvider.java:148) - Authentication with SHA-256 failed. Now trying with MD5.
2018-11-26 19:51:59,444 [http-bio-6080-exec-5] INFO org.apache.ranger.security.listener.SpringEventListener (SpringEventListener.java:86) - Login Unsuccessful:rangertagsync | Ip Address:172.30.92.47 | Bad Credentials
Created 11-26-2018 07:56 PM
I tryed with authentication method UNIX and NONE
Created 11-27-2018 12:28 PM
@Danilo Sousa By default ranger comes with an internal admin user (db user). You can reset the password at the DB level back to admin using the following query:
update x_portal_user set password = 'ceb4f32325eda6142bd65215f4c0f371' where login_id = 'admin';
HTH