Setting Up SonarQube on an Unix Device
Setting Up SonarQube on a Unix VM
Prerequisite:
- A Unix VM with at least 4GB of RAM (8GB recommended)(link)
Shopping List:
In this blog post, we will go through the steps to set up a SonarQube instance to analyze the source code of an application on an Ubuntu VM.
If you're unfamiliar with SonarQube, it is an excellent open-source SAST tool designed to integrate with various CI/CD platforms.
Once we have a fully functional Ubuntu VM with at least 4GB of RAM (I recommend using 8GB if possible), we need to set up both the SonarQube web server and the SonarQube scanner.
Installing the SonarQube Web Server:
- Let's download the SonarQube Web Server by visiting the link showed above and clicking on the highlighted button:
https://www.sonarsource.com/products/sonarqube/downloads/
Let's procede with installing the SonarQube Scanner:
- Let's visit the SonarScanner CLI documentation page and click on the download link to start the download of the sonar-cube CLI tools
https://docs.sonarsource.com/sonarqube-server/latest/analyzing-source-code/scanners/sonarscanner/ - Once the download is complete, unzip the file:
unzip <filename>
- Move the extracted folder to
/opt/sonar-scanner
:sudo mv ./<filename>/ /opt/sonar-scanner
Congratulations! You are now ready to run Static Application Security Testing (SAST) with SonarQube.
Commenti
Posta un commento