This script is for Slackware 14.2 only and may be outdated.

SlackBuilds Repository

14.2 > Development > sonarqube (5.6.1)

SonarQube software (previously called Sonar) is an open source quality
management platform, dedicated to continuously analyze and measure
technical quality, from project portfolio to method.

To create the MariaDB SonarQube database run:

CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'sonar' IDENTIFIED BY 'sonar';
GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar';
GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';
FLUSH PRIVILEGES;

Then start the service
/etc/rc.d/rc.sonarqube start

Then point your browser to
http://localhost:9000/sonarqube/

Then login as:
user: admin
password: admin

This requires a "sonar" user and group.
groupadd -g 287 sonar
useradd -g 287 -u 287 -r -c 'SonarQube user' \
-s /bin/bash -d /usr/share/sonarqube sonar

This requires: jdk

Maintained by: Giorgio Peron
Keywords: java,code quality
ChangeLog: sonarqube

Homepage:
http://www.sonarqube.org

Source Downloads:
sonarqube-5.6.1.zip (d8729bc92fdcd601661aa23885a7c6f7)

Download SlackBuild:
sonarqube.tar.gz
sonarqube.tar.gz.asc (FAQ)

(the SlackBuild does not include the source)

Validated for Slackware 14.2

See our HOWTO for instructions on how to use the contents of this repository.

Access to the repository is available via:
ftp git cgit http rsync

© 2006-2024 SlackBuilds.org Project. All rights reserved.
Slackware® is a registered trademark of Patrick Volkerding
Linux® is a registered trademark of Linus Torvalds