KDC has no support for encryption type while connecting to SQL server on RHEL8

After upgrading to RHEL8 or Centos8, connecting to SQL server using trusted authentication may fail with the following error: rc4 encryption is still heavily used in AD environments but it is already disabled by default. Therefore, to re-enabled it again, simply call: After that, reboot the server and the SQL connection would work.

Azure Authentication using Python MSAL

Microsoft has released MSAL for Python. This has helped to shield away complexities in calling the API using urllib3 libraries and meddling with the parameters. In this article, I will provide sample code on how to get the access token using the following credentials type: UserID and Password Client ID and Client Secret User ID … Read more