mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
development/sonarqube: Fix README.
This commit is contained in:
parent
990f003575
commit
35b9329c77
1 changed files with 13 additions and 8 deletions
|
@ -1,21 +1,26 @@
|
|||
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.
|
||||
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
|
||||
/etc/rc.d/rc.sonarqube start
|
||||
|
||||
Then point your browser to
|
||||
http://localhost:9000/sonarqube/
|
||||
http://localhost:9000/sonarqube/
|
||||
|
||||
Then login as:
|
||||
user: admin
|
||||
password: admin
|
||||
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
|
||||
useradd -g 287 -u 287 -r -c 'SonarQube user' \
|
||||
-s /bin/bash -d /usr/share/sonarqube sonar
|
||||
|
|
Loading…
Reference in a new issue