You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you install Influx on a node, and go to http://node:8083/, the (hidden) settings pane attempts to connect to localhost. Since the JS is using this to determine the hostname that it sends HTTP requests against, this is wrong in almost all cases (would only work on the case you have installed Influx locally, which I guess is common for developers).
The error that is returned ("Couldn't connect to host (http://localhost:8086): error") is not that clear either; this could be read to be a server side issue between the web handler communicating with the Influx backend on 8086.
I think this should default to the HTTP Host as specified in the request header for index.html. The HTML comes from ./shared/admin/index.html:
@daviesalex I think this is fixed with the changes in #3184. I'm closing this for now, but either a build from master or any of the v0.9.2 build should have this fixed. Thanks!
When you install Influx on a node, and go to http://node:8083/, the (hidden) settings pane attempts to connect to localhost. Since the JS is using this to determine the hostname that it sends HTTP requests against, this is wrong in almost all cases (would only work on the case you have installed Influx locally, which I guess is common for developers).
The error that is returned ("Couldn't connect to host (http://localhost:8086): error") is not that clear either; this could be read to be a server side issue between the web handler communicating with the Influx backend on 8086.
I think this should default to the HTTP Host as specified in the request header for index.html. The HTML comes from ./shared/admin/index.html:
There are a couple of obvious ways to do this:
(2) feels like a bit of a hack; (1) may be more work.
Thoughts?
The text was updated successfully, but these errors were encountered: