79604391

Date: 2025-05-03 05:38:32
Score: 2.5
Natty:
Report link

I am posting an answer because I don't have enough reputations to comment.

I have faced the same problem. Just go with docker. It works perfectly.

https://hub.docker.com/_/sonarqube/

Use docker desktop and pull this image. Once done open a terminal and run the below commands, it creates volumes for persistence.

docker volume create sonarqube_data
docker volume create sonarqube_logs
docker volume create sonarqube_extensions

Now run the container

docker run -d --name sonarqube -p 9000:9000 -v sonarqube_data:/opt/sonarqube/data -v sonarqube_logs:/opt/sonarqube/logs -v sonarqube_extensions:/opt/sonarqube/extensions sonarqube:latest

Open a browser and access it. Use admin as both password and username.

Once you are in, create a project and follow the instructions. You could easily setup this in minutes.

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yaswanth