slackbuilds_ponce/development/sonarqube
Andrew Clemons e3ad4eb47c
development/sonarqube: i486 => i586.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-03-26 01:20:17 +07:00
..
doinst.sh
rc.sonarqube
README
slack-desc
sonarqube.info various: Use zulu jdk builds for REQUIRES. 2022-03-03 15:56:51 +07:00
sonarqube.SlackBuild development/sonarqube: i486 => i586. 2022-03-26 01:20:17 +07:00

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