You're viewing version 2.5 of the OpenSearch documentation. This version is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Disabling security
You might want to temporarily disable the Security plugin to make testing or internal usage more straightforward. To disable the plugin, add the following line in opensearch.yml
:
plugins.security.disabled: true
A more permanent option is to remove the Security plugin entirely:
- Delete the
plugins/opensearch-security
folder on all nodes. - Delete all
plugins.security.*
configuration entries fromopensearch.yml
.
To perform these steps on the Docker image, see Working with plugins.
Disabling or removing the plugin exposes the configuration index for the Security plugin. If the index contains sensitive information, be sure to protect it through some other means. If you no longer need the index, delete it.
Remove OpenSearch Dashboards plugin
The Security plugin is actually two plugins: one for OpenSearch and one for OpenSearch Dashboards. You can use the OpenSearch plugin independently, but the OpenSearch Dashboards plugin depends on a secured OpenSearch cluster.
If you disable the Security plugin in opensearch.yml
(or delete the plugin entirely) and still want to use OpenSearch Dashboards, you must remove the corresponding OpenSearch Dashboards plugin. For more information, see OpenSearch Dashboards remove plugins.
Docker
-
Create a new
Dockerfile
:FROM opensearchproject/opensearch-dashboards:2.5.0 RUN /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove securityDashboards COPY --chown=opensearch-dashboards:opensearch-dashboards opensearch_dashboards.yml /usr/share/opensearch-dashboards/config/
In this case,
opensearch_dashboards.yml
is a “vanilla” version of the file with no entries for the Security plugin. It might look like this:--- server.name: opensearch-dashboards server.host: "0.0.0.0" opensearch.hosts: http://localhost:9200
-
To build the new Docker image, run the following command:
docker build --tag=opensearch-dashboards-no-security .
- In
docker-compose.yml
, changeopensearchproject/opensearch-dashboards:2.5.0
toopensearch-dashboards-no-security
. - Change
OPENSEARCH_HOSTS
oropensearch.hosts
tohttp://
rather thanhttps://
. - Enter
docker-compose up
.