
Also ensure that and are set appropriately: =jdbc:sqlserver://localhost databaseName=sonar To use SQL Authentication, use the following connection string. =jdbc:sqlserver://localhost databaseName=sonar integratedSecurity=true
#Install sonarr as service update
Making sure that is_read_committed_snapshot_on is set to true to prevent SonarQube from facing potential deadlocks under heavy loads.Įxample of query to check is_read_committed_snapshot_on: SELECT is_read_committed_snapshot_on FROM sys.databases WHERE name='YourSonarQubeDatabase' Įxample of query to update is_read_committed_snapshot_on: ALTER DATABASE YourSonarQubeDatabase SET READ_COMMITTED_SNAPSHOT ON WITH ROLLBACK IMMEDIATE MS SQL database's shared lock strategy may impact SonarQube runtime. READ_COMMITED_SNAPSHOT MUST be set on the SonarQube database. Grant this sonarqube user permissions to create, update, and delete objects for this schema.Ĭollation MUST be case-sensitive (CS) and accent-sensitive (AS). They are real requirements not recommendations.Ĭreate an empty schema and a sonarqube user. Be sure to follow the requirements listed for your database.

The server and database hosts should be located in the same network.Īll hosts must be time-synchronized. One or more scanners running on your build or continuous integration servers to analyze projects.įor optimal performance, the SonarQube server and database should be installed on separate hosts, and the server host should be dedicated.Metrics and issues for code quality and security generated during code scans.the compute engine in charge of processing code analysis reports and saving them in the SonarQube database.a search server based on Elasticsearch.a web server that serves the SonarQube user interface.The SonarQube server running the following processes: Instance componentsĪ SonarQube instance comprises three components:

#Install sonarr as service install
For details on clustered setup, see Install the Server as a Cluster. This section describes a single-node SonarQube instance.
