-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't work in latest Chrome #1464
Comments
I don't know the reason of your problem. But my Chrome was just updated to your same version yestoday and now my Kibana works well. you can clear your Chrome cache and have a try. |
@coogleyou do you have same setup with protected nginx between ES and kibana? |
My nginx proxy setup:
|
My nginx just host kibana as a web server without auth and es proxy, and I am not good at nginx thing... |
I have the same problem, without any of the nginx proxy management.
Observed - The header works, but the panels are displayed as white bars around 6px high |
chrome 37.0.2062.102 m and Version 39.0.2139.0 canary (64-bit) both work fine for me. Access-Control-Allow-Origin: * |
ES server has nothing to do with this. Request fails at nginx proxy Becuase Authotization header is missing in all request except first one to _nodes. And it was sensed before update of Chrome. Please see my described setup above. If I disable auth then it also works for me of course.
|
The control headers are fine on mine too. The _search call works and returns the list of saved dashboards, but the interface itself looks like this when opened: http://imgur.com/hFdk0NA The auto complete on new panel elements worked, the search works, and it looks like the various queries are functional, but there is a drawing error on the rows that results in the data not showing. |
I have the same issue but with apache. After Chrome update to Versión 37.0.2062.120 m, Kibana don't send Authorization header for this requests. No seems like an apache misconfiguration but...
|
Unfortunately it isn't only a problem with Chrome update. I have installed The latest version of firefox and fails too. However, with Safari 7.0.6 in MacOS 10.0.4 works fine. What could be the common point in that? The only change in all of this has been the Chrome update. Thanks!!!! Update: With safari 5.1.7 for windows works. |
Since you are using authentication I recommend you reverse proxy elasticsearch to a different folder. That way the authentication mechanism happens once when accessing the host instead of twice. For example When you load Kibana you authenticate against kibana.example.com but the javascript/browser combo does not authenticate or even requests authentication against elasticsearch.example.com Change this to kibana.example.com and kibana.example.com/elasticsearch Another possibility could be a caching issue, open up an incognito tab and try there. If that works then load the page normally in chrome, press F12 and right click on the refresh button and select empty cache and hard reload. |
We've tested Kibana 4 extensively against the latest version of chrome, and it looks like everything is ok. It appear this is a proxy issue, going to close this since it isn't clearly a Kibana bug. |
Same problem here. Chrome complains about the origin as noted above, but IE works totally fine. I'm running apache 2.4 to proxy requests to elasticsearch for basic http authentication. I know this is a proxy issue, but just posting here in case someone figured it out and could shed some light. |
Why is this closed? The issue is still there and we are on Kibana 5.6 |
After update to Chrome 37.0.2062.94 Kibana stopped working there. It still works fine in other browsers.
My setup:
Elasticsearch is behind nginx proxy with http basic auth. Kibana is on separate sever.
First request to
/_nodes
works just fine. All following requests (for example/_all/_search
) fail with401 Unauthorized
. Authorization header is not present anymore, so obviously nginx doesn't allow this request.As I said, works just fine in Safari, for instance. Started failing only after update to latest Chrome.
Any ideas how to fix it and what exactly in Chrome causes this issue? I tried to read through release notes here: https://chromium.googlesource.com/chromium/src/+log/36.0.1985.0..37.0.2062.0 but didn't find anything yet.
The text was updated successfully, but these errors were encountered: