Organizations Redirect

Good morning.

After upgrading to Grafana 9.5.1, we had issues switching between created orgs.

When trying to switch between them, we ended up being directed to “http://grafana.staged-by-discourse.com/?orgId=7”.

I think it’s just a basic redirection problem. As we have around 8 organizations configured in grafana, and one of them is separate for viewing without login.
As soon as we try to log in, we already hit this error.

Apart from that, this new version 9.5.1 is very TOP

I also just had this same issue, adding the root_url variable fixed it for me Configure Grafana | Grafana documentation

1 Like

I am having the same issue, and I cannot add the root_url variable because I have a reverse proxy in front of Grafana.
@edersonvanazzi Did you find a way to solve this issue?

Good morning, I managed to add the “domain =” and the root_url parameter that is different from the example, follow how I added it.
“root_url = %(protocol)s://%(domain)s/”
@nutslove

1 Like

@edersonvanazzi
Thank you!

My hero. I was really struggling with this issue and this fixed it for me. My grafana instance serves about 350 employees so there was a lot of heat to fix after the update. Thank you! Fweew.

1 Like

Greetings everyone,

I also experienced this problem but I had an extra configuration on my docker-comopse.yml file that was the environment variable GF_SERVER_ROOT_URL: “your-url-here” so remember to change it if you also have it.
So what do we need to change:

  • You need to change your grafana.ini the the root_url, which can be dynamically constructed as default or you can manually insert it and also change the serve_from_sub_path to true.

  • If you are using docker to run your Grafana remember that env variable :blush:.

Assuming you are using a reverse proxy like I am.

Hope that this insight helps someone.