Infinite loading screen

Hi, i’ve just installer sonarqube on a debian server with a postgresql database. I use a nginx proxy to acces on it

I’ve got no errors buy i’ve got an infinite loading loop like that

Got an idea ?

Hello,
What is your SonarQube version ?
Also, do you have this behaviour on every browsers ?
Alex.

Hello,

Sonarqube 7.6
I’ve got this behaviour on every browser.

Nothing wrong in logs.

i’ve disabled my nginx reverse proxy and now it’s fine, but i need to use it

This is my nginx configuration

location /sonar {
proxy_pass http://localhost:9000/sonar/;
}

Maybe you should avoid using a context in the sonar url as you are already using a proxy.
I suggest you to try to remove the sonar.web.context parameter and set the following in your nginx:

location /sonar {
proxy_pass http://localhost:9000;
}

Hey
stumbled into similar problem with SonarQube 8.4.1
deployed in K8s with nginx simple ingress context in root “/”
everything loads up but without XHR content (in chrome debbuger)

tried all suggestions that google can offer, actually i have in the same k8s several other services (such as kibana, grafana etc) and they all work properly with the same ingress settings.

anyone has an idea about it? suggestions?

appreciate any help

Thanks!

2 Likes

Ofer Peretz or anyone, I am suffering the same issue using nginx. Any solution or workaround?