Setup DbVisualizer or Dbeaver or Data grip or other tools to access Secure Kerberos hadoop Cluster from remote windows machine
If you are on Windows 10 you should already be having utilities like - kinit, kutil, etc available on your machine. If not then install MIT Kerberos - http://web.mit.edu/kerberos/ Here are the steps - Copy /etc/krb5.conf from any node of your cluster to your local machine Also, copy *.keytab file from cluster to your local machine. Rename krb5.conf as krb5.ini Copy krb5.ini to - <Java_home>\jre\lib\security\ C:\Users\<User_name>\ Copy keytab file to - C:\Users\<User_name>\ On Hadoop Cluster get the principal name from keytab file - ktutil ktutil: read_kt keytab ktutil: list slot KVNO Principal ---- ---- --------------------------------------------------------------------- 1 1 <username>@HADOOP.domain.COM ktutil: quit Above highlighted is your principal name. On windows - Execute: kinit -k -t C:\Users\<User_name>\*.keytab <us...