SonarQube
Overview
This installation happens on the
dsb-hub
.
According to SonarQube's Website, SonarQube is an open-source platform used to continuously inspect the quality of code in various programming languages. It is designed to detect bugs, security vulnerabilities, and code smells, providing detailed reports to help developers maintain high standards in their codebases. SonarQube is widely used in DevSecOps environments to ensure that code remains secure, maintainable, and follows industry best practices.
Prerequisites
Note: This installation uses PostgreSQL 16.6 (Ubuntu 16.6-0ubuntu0.24.04.1)
-
Switch to the PostgreSQL User
First, switch to thepostgres
user to perform database-related tasks:sudo -i -u postgres
-
Create a Database and User for SonarQube
While logged in as thepostgres
user, create a new PostgreSQL user and database for SonarQube:# Create the sonar user and database
createuser sonar
createdb sonar -
Set Password and Grant Privileges
Still as thepostgres
user, start the PostgreSQL session. Set a password for thesonar
user and grant the necessary privileges:# Start the PostgreSQL session
psql
# Set password for sonar user
ALTER USER sonar WITH ENCRYPTED PASSWORD 'your_password';
# Grant initial database privileges
GRANT ALL PRIVILEGES ON DATABASE sonar TO sonar;
# Connect to the sonar database to grant schema privileges
\c sonar
# Grant all necessary schema privileges
GRANT ALL ON SCHEMA public TO sonar;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO sonar;
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO sonar;
GRANT ALL PRIVILEGES ON ALL FUNCTIONS IN SCHEMA public TO sonar;
GRANT USAGE ON SCHEMA public TO sonar;
GRANT CREATE ON SCHEMA public TO sonar; -
Exit PostgreSQL and Return to the Original User
Exit from the PostgreSQL session return to the original user:# Exit PostgreSQL session
\q
# Return to the original user
exit -
Update the
pg_hba.conf
File
Modify thepg_hba.conf
file to configure authentication:sudo nano /etc/postgresql/16/main/pg_hba.conf
Add the following line to enable
scram-sha-256
authentication for thesonar
user:local sonar sonar scram-sha-256
Installation Steps
-
Download and Install SonarQube
Download the SonarQube package and extract it:cd /opt
sudo wget https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-10.6.0.92116.zip
sudo apt install unzip -y
sudo unzip sonarqube-10.6.0.92116.zip
sudo mv sonarqube-10.6.0.92116 sonarqube -
Create a SonarQube User
Create a dedicated user for running SonarQube and set the correct permissions:sudo adduser sonar
sudo chown -R sonar:sonar /opt/sonarqube -
Update SonarQube Database Configuration
Edit thesonar.properties
file to configure SonarQube's connection to the PostgreSQL database:sudo nano /opt/sonarqube/conf/sonar.properties
Update the PostgreSQL settings:
# PostgreSQL settings
sonar.jdbc.username=sonar
sonar.jdbc.password=your_password
sonar.jdbc.url=jdbc:postgresql://localhost/sonar