Install sonarqube with MSSQL > can't connect to database

Thanks ganncamp

Now the sonarqube service starts and also the server (on http://localhost:9000) with the same user as the sqlsever. But it always uses the H2 database. I want to use a new SQL server DB. So I need to completely erase data from H2 DB and start a new one as SQL

I modified the info in the file sonarcube.properties as this :

sonar.jdbc.url=jdbc:sqlserver://PC933-2k19;databaseName=sonar;integratedSecurity=true

We use integrated security and I read this :

Do not set sonar.jdbc.username or sonar.jdbc.password property if you are using Integrated Security

So I didn’t put a username and password.

Now the service is up and running but still with H2 database and not the SQL …
It seems to not detect the SQL info.

How can I tell sonarqube to use sql instead of H2?

Thanks