Sorry for delay, I figured out my issue, I was not setting up the JDBC URL string correctly, I was doing: sonar.jdbc.encrypt=false
sonar.jdbc.url=jdbc:sqlserver://dbxxx:15001;databaseName=Sonarxxx_X99;
But needed to do: sonar.jdbc.url=jdbc:sqlserver://dbxxx:15001;databaseName=Sonarxxx_X99;encrypt=false;
2 Likes