MSSQL Kerberos base authentication - ja-guzzle/guzzle_docs GitHub Wiki

To use Kerberos based authentication with guzzle repository, use below configuration in application.yml and guzzle.yml

configure application.yml at location /guzzle/api/application.yml

spring:
  datasource:
    url: "jdbc:sqlserver://192.168.1.202\\SP_TEST:50151;databaseName=GUZZLErepo;servername=jaspsql01.justanalytics.local;integratedSecurity=true;authenticationScheme=JavaKerberos"
    username: "[email protected]"
    password: "<user_password>"

configure guzzle.yml at location /guzzle/conf/guzzle.yml

database:
  type: jdbc 
  properties:
    jdbc_url: "jdbc:sqlserver://192.168.1.202\\SP_TEST:50151;databaseName=GUZZLErepo;servername=jaspsql01.justanalytics.local;integratedSecurity=true;authenticationScheme=JavaKerberos"
    username: "[email protected]"
    password: "<user_password>"

download mssql driver copy it at /guzzle/api/libs and /guzzle/libs/ directory

wget https://repo1.maven.org/maven2/com/microsoft/sqlserver/mssql-jdbc/7.2.2.jre8/mssql-jdbc-7.2.2.jre8.jar
⚠️ **GitHub.com Fallback** ⚠️