Hi,
the /conf/sonar.properties has this comment
#----- Microsoft SQLServer 2014/2016/2017/2019/2022 and SQL Azure
# A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS)
# Use the following connection string if you want to use integrated security with Microsoft Sql Server
# Do not set sonar.jdbc.username or sonar.jdbc.password property if you are using Integrated Security
# For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 12.4.2 package from
# https://github.com/microsoft/mssql-jdbc/releases/download/v12.4.2/mssql-jdbc_auth.zip
# and 'mssql-jdbc_auth-12.4.2.x64.dll' to your path.
As Sonarqube 10.6 ships with mssql-jdbc-12.6.1.jre11.jar
the wrong comment already exists for a while.
should be
[...]
# For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 12.6.1 package from
# https://github.com/microsoft/mssql-jdbc/releases/download/v12.6.1/mssql-jdbc_auth.zip
# and 'mssql-jdbc_auth-12.6.1.x64.dll' to your path.
Gilbert