I have setup my sonarqube server in centos 7. I am using sonarqube 7.4. I have installed httpd and trying to access sonarqube dashboard. This will load for ever as I attached in image.
I tried deleting data/es5 but no use. My sonar.properties file is as below.
sonar.jdbc.username=sonar
sonar.jdbc.password=mypassword
sonar.jdbc.url=jdbc:postgresql://localhost/sonar
sonar.path.data=/opt/sonarqube/data
sonar.path.temp=/opt/sonarqube/temp
sonar.web.port=30056
sonar.web.context=/sonarqube
No errors in web.log. Please suggest me what wrong am I doing why sonarqube is not loading.
Issue was with network side. Below command resolved the issue.
sudo firewall-cmd --zone=public --add-port=30056/tcp --permanent