You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This article provides answers to some of the most common questions about how to run [Azure HDInsight](https://azure.microsoft.com/services/hdinsight/).
@@ -180,13 +180,40 @@ sections:
180
180
Create a Kerberos keytab for your domain username. You can later use this keytab to authenticate to remote domain-joined clusters without entering a password. The domain name is uppercase:
When is salting required for AES256 encryption when creating the keytab?
193
+
answer: |
194
+
If your TenantName & DomainName are different (example TenantName – [email protected] & DomainName – [email protected]), you need to add a SALT value using the -s option.
195
+
196
+
- question: |
197
+
How do I determine the proper SALT value?
198
+
answer: |
199
+
1. Use an interactive Kerberos login to determine the proper salt value for the keytab. Interactive Kerberos login will use the highest encryption by default. Tracing should be enabled to observe the salt. Below is a sample Kerberos login:
200
+
201
+
```shell
202
+
203
+
$ KRB5_TRAACE=/dev/stdout kinit <username> -V
204
+
```
205
+
2. Look through the output for the salt "......." line.
0 commit comments