sonarqube - Sonar Installation problem -


information installation

using embedded database derbis

problem :

i run bin/windows-x86-32/startsonar.bat , click http://localhost:9000

on clicking this, following error:

we're sorry, went wrong. please try in few minutes , contact support if problem persists. <%= link_to "go homepage", home_path %> 

do know error message.

i message when database isn't correctly set (either local has issue, in case try fresh installation).
or mysql database can associate has issue (wrong 'sonar.jdbc.username' or 'sonar.jdbc.password' in sonar.properties file.).
or default port embedded database (jdbc:derby://localhost:1527/sonar;create=true) isn't available on server/workstation.


if using mysql database (not case), need create first:

mysql [localhost] {root} ((none)) > create database if not exists sonar character set utf8 collate utf8_general_ci; query ok, 1 row affected (0.01 sec)  mysql [localhost] {root} ((none)) > grant privileges on sonar.* 'sonar'@'localhost' identified 'sonar'; query ok, 0 rows affected (0.00 sec)  mysql [localhost] {root} ((none)) > flush privileges; query ok, 0 rows affected (0.00 sec) 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -