I was following your tutorial on elk while it installs fine is there an option with X-pack at least basic auth enabled version?
Thanks
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi and thank you for checking out our tutorial on setting up an EFK stack on Kubernetes!!
By default for basic and trial licenses, X-Pack security features are disabled. You can enable them by setting the
xpack.security.enabled
parameter totrue
in theenv
section of theelasticsearch_statefulset.yaml
file. Note that if you enable security features for Elasticsearch, you may need to configure additional security parameters for Kibana and Fluentd as well.Here are some resources that may be helpful: https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-xpack.html https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-security.html https://www.elastic.co/guide/en/elasticsearch/reference/7.3/security-settings.html https://www.elastic.co/guide/en/kibana/7.3/security-settings-kb.html https://www.elastic.co/guide/en/elastic-stack-overview/current/elasticsearch-security.html https://www.elastic.co/guide/en/elastic-stack-overview/current/security-getting-started.html https://docs.fluentd.org/output/elasticsearch#user-password-optional
Hope this helps!!