SonarQube

SonarQube installation on docker container with docker-compose

SonarQube is being widely used to manage code quality and code analysis. It is an open source tool that performs code inspection to detect issues in the code.  In this post we will learn how to install SonarQube on a docker container. We will install community version LTS edition of...

How to change default vm.max_map_count on a Linux system

In this article we will discuss regarding vm.max_map_count and how to change this value in a linux system. We will change the vm.max_map_count for resolution of this error returned when we try to start SonarQube installed on a linux environment with default max_map_count setting. Max virtual memory areas vm.max_map_count [65530]...

Fail to get bootstrap index from server: SonarQube error

You might have come across this error “Fail to get bootstrap index from server” while running SonarQube analysis. For this blog post we will discuss this error as it occurs in Jenkins while executing a job which includes Sonar analysis. You might come across this error in SonarQube in a...

How to install SQL Server database for SonarQube

Overview SonarQube has an inbuilt database which is meant for evaluation purpose. When we start using SonarQube on the project, we should switch to one of the databases supported by SonarQube. Here we will discuss how to setup SQL server database for SonarQube. To write our sample code, we will...