-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Graylog v2.0-alpha can't get to web interface #1908
Comments
Not sure if this could have anything to do with the problem. I'm also seeing this in the logs.
|
This issue can be closed. It turns out the reported error was misleading, and the root problem was related to the configuration of the discovery. One other thing I noticed while trying to narrow down the problem. What I ended up getting was the server shutdown with the following message.
Not sure why that was happening, thought I'd report it. |
When running the graylog2/server image from the Docker repo, I'm encountering this problem when loading the web interface. The interface login screen loads, but eventually it goes to the error page. Since this happens with a fresh install of the image, I am assuming that this is a repeatable problem... Any ideas on a fix? |
@numair Please refer to http://docs.graylog.org/en/2.0/pages/configuring_webif.html for information how to configure the Graylog web interface. |
Sorry, but this doesn't solve the problem of a Docker image installation On Thursday, May 19, 2016, Jochen Schalanda notifications@github.com
|
@numair We are using GitHub issues for tracking bugs in Graylog itself, but this doesn't look like one. Please post this issue to our public mailing list or join the #graylog channel on freenode IRC. Thank you! |
@joschi I noticed you guys have a lot of ongoing issues opened about this particular problem; the solution is pretty simple -- just edit your example commands on https://hub.docker.com/r/graylog2/server/ to run the Docker image to include -e GRAYLOG_REST_TRANSPORT_URI='http://your_public_ip:12900' ... and then there will be far fewer confused people! There is mention of this in the comments on that page, but it is at the very bottom of the comment list, and thus simply following the instructions given makes it seem as though the image itself is broken. Thanks for all of your work on this great project! |
The docker page I was following, http://docs.graylog.org/en/2.0/pages/installation/docker.html doesn't even have comments so the only way I was able to figure this out was to search for the error message and find this issue. I did find in the configuration file documentation saying that it would use the first non-loopback ipv4 address if rest_listen_uri was set to a wildcard, but it still seemed like an odd thing to be changing if there wasn't a comment in the docker docs. The purpose of GRAYLOG_PASSWORD_SECRET is also under-documented and there should be a suggestion to use "pwgen -N 1 -s 96" in the docker documentation (or the whole thing should be initialized on first boot with a random seed without user intervention) If I can type something coherent I'll see about submitting a patch for the docs.. Although it might be better if it was done by someone more familiar with the project, or someone better at writing. |
It's disappointing the docker-compose fails out of the box. And the workaround of using the public IP address doesn't work real well for me because I'm deploying to a cluster and can't know (without more work) what the public IP address will be before deployment. |
@mariussturm Is there anything we can do to make the Docker experience better? |
This should get a little easier by #2515 |
same problem here. it's a pitty that i've to put the public ip.. is there anything that can be automated or solved by using docker capability such as links? |
The error page says "Please verify that the server is healthy and working correctly." but there is no error in the log, nor a troubleshooting page on the website. Document getting the product to run, and troubleshooting when it doesn't. List the checks for all the components. Time does not permit that we are going through all the noise of a mailing list or an IRC channel. |
@bbaassssiiee We also offer professional support services if you cannot or don't want to use the community support: https://www.graylog.org/professional-support This being said, I think this issue isn't really actionable (and the questions are really answered in the documentation), so I'll close this issue. |
Same issue, unable to make the docker compose work in a vagrant box. Setting GRAYLOG_REST_TRANSPORT_URI with a local public ip in the docker compose didn't work for me. How can I proceed with troubleshooting this? |
Ah, made it work with also setting the GRAYLOG_WEB_ENDPOINT_URI to the local public ip address. |
Problem description
Testing out Graylog v2.0-alpha
Steps to reproduce the problem
Installed on Ubuntu 14.04
Accessing http://graylog:9000
I get
Environment
Latest 2.0 alpha.5
2.2.0
3.2.3
Ubuntu 14.04 LTS
In graylog logs I see the following warning
I even changed the bind address to accept connections on all network interfaces.
Based on the error reported on the web interface, Graylog is having problems connecting to
We are experiencing problems connecting to the Graylog server running on http://127.0.0.1:12900//
Yet I'm able to access it from localhost
both
wget http://127.0.0.1:12900/system/cluster/node
and
wget http://10.1.1.94:12900/system/cluster/node
Work
ElasticSearch is also accesible
curl -XGET 'http://127.0.0.1:9200/_cluster/health?pretty=true'
Even the client running the browser is able to access the REST_API and ES
What's wrong?
Am I missing something?
Thanks in advance
The text was updated successfully, but these errors were encountered: