2025-08-24T10:18:01,343 INFO : com.vmware.horizon.adapters.kerberosAdapter.KerberosIdpAdapter - Initiating authentication using Kerberos
2025-08-24T10:18:01,345 INFO : com.vmware.horizon.adapters.kerberosAdapter.KerberosIdpAdapter - Kerberos authentication failure: null
2025-08-24T10:18:01,346 INFO : com.vmware.horizon.adapters.kerberosAdapter.KerberosIdpAdapter - Cause: Failure unspecified at GSS-API level (Mechanism level: Encryption type RC4 with HMAC is not supported/enabled)
2025-08-24T10:18:01,346 INFO : com.vmware.horizon.connector.utils.SamlAssertionGeneratorUtil - Returning a saml failure response.
VIDM 3.3.7
Set the msDS-SupportedEncryptionTypes attribute on the vIDM’s computer object in ActiveDirectory to enforce an encryption type.
Check Encryption in Active Directory:
Command : PS C:\Users\Administrator> Get-ADComputer "<Computer Object Name>" -Properties msDS-SupportedEncryptionTypes
If no value is returned for "msDS-SupportedEncryptionTypes" you can set it by using the below command:
Set Encryption in AD :
Command : PS C:\Users\Administrator> Set-ADComputer "<Computer Object Name>" -Replace @{'msDS-SupportedEncryptionTypes'=24}
After this you should see Login success in Kerberos in opt/vmware/horizon/workspace/logs/workspace.log
2026-04-15T09:21:43,406 INFO : com.vmware.horizon.adapters.kerberosAdapter.KerberosIdpAdapter - Initiating authentication using Kerberos 2026-04-15T09:21:43,415 INFO : com.vmware.horizon.adapters.kerberosAdapter.KerberosIdpAdapter - Authentication SUCCESS: Administrator
If there are are still issues after configuring the encryption to 24 in Active Directory it is recommended to leave the domain with the computer object and then rejoin the domain before applying the above steps once more. Leaving and joining the domain should be done from the vIDM UI. Go to: Identity and Access Management > Setup > Connectors.
Note that if the domain is rejoined it will also be necessary to re-enable Kerberos in the auth-adapter as it is disabled by default on leaving the domain.
Configuring and Enabling the Kerberos Authentication Adapter