diff options
Diffstat (limited to 'development/sonarqube/README')
-rw-r--r-- | development/sonarqube/README | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/development/sonarqube/README b/development/sonarqube/README new file mode 100644 index 0000000000..975531b82e --- /dev/null +++ b/development/sonarqube/README @@ -0,0 +1,17 @@ +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 |