-
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
Docker image bundles x-pack #12720
Comments
You also need to set the following: XPACK_REPORTING_ENABLED=false |
Seems odd not having a global disable xpack option but having to disable different settings all across the stack. In my case i thought that
Not mentioning disabling the security option on ES and the monitoring option on Logstash. Really annoying https://www.elastic.co/guide/en/x-pack/current/xpack-settings.html PS: @tylersmalley the reporting option was not enough for me on Kibana, I had to disable monitoring too. |
Even when passing in those values using the following command:
Kibana doesn't start correctly. I get the following errors in the logs:
|
@JorritSalverda I think your problem is that you don't have X-Pack installed on ES. Even if disabled i think it should be installed on ES so Kibana doesn't break. Really annoying, I know... (related elastic/kibana-docker#27) Your original issue relates with elastic/kibana-docker#35 |
I'm going to close this issue in favor of elastic/kibana-docker#27. I'm definitely +1 on making changes here, however we manage the docker image in that repo and I want to keep all the discussion in one place as much as possible. |
Since moving the official docker image from docker hub to
docker.elastic.co/kibana/kibana
X-Pack is suddenly installed and enabled by default. I think most of the installations out there make use of the open source version which doesn't include X-Pack.Of course it can be disabled by passing
XPACK_MONITORING_ENABLED=false
but then it starts with the following message:And once it's past this step Kibana doesn't work, it redirects me to
/login?next=%2F
and then chokes out with ERR_TOO_MANY_REDIRECTS in the Chrome browser. I started it with the following command:docker run -d -p 5601:5601 -e "ELASTICSEARCH_URL=h***" -e "STATUS_ALLOW_ANONYMOUS=true" -e "XPACK_MONITORING_ENABLED=false" -e "ELASTICSEARCH_USERNAME=" -e "ELASTICSEARCH_PASSWORD=" -e "XPACK_MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED=false" docker.elastic.co/kibana/kibana:5.5.0
Perhaps this is related to issue #8818?
Is it possible to create a separate docker container that doesn't have X-Pack installed? Tag
5.5.0-os
or something alike?The text was updated successfully, but these errors were encountered: