How to Disable security in Kibana

To be used for development purposes, they want to disable security features.

https://opendistro.github.io/for-elasticsearch-docs/old/0.9.0/docs/security/disable/

I tried it after seeing the information above. However, when a Docker build is performed, the following error occurs:

Sending build context to Docker daemon  2.048kB
Step 1/2 : FROM amazon/opendistro-for-elasticsearch-kibana:1.13.1
 ---> 7289a1ff6b13
Step 2/2 : RUN /usr/share/kibana/bin/kibana-plugin remove opendistro_security
 ---> Running in fc0f780f24bb
Unable to remove plugin because of error: "Plugin [opendistro_security] is not installed"
The command '/bin/sh -c /usr/share/kibana/bin/kibana-plugin remove opendistro_security' returned a non-zero code: 74

You are using latest version of Kibana (1.13.1) but referring to a older version of documentation. Please refer to Disable Security - Open Distro Documentation for current documentation.

2 Likes

I missed the fact that I was looking at the wrong document.

Thanks to you, I solved it. Thank you.