You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On our local opensearch environments (in development environment), we don't need the security plugin
So we are using the option "plugins.security.disabled=true"
until version 2.11.1 this option did hes job, but now on upgrading to 2.12.0 this fails
(tested rollback to fixed version vs latest and the option is fine again)
The issue is probably upstream, but I have to start somewhere
docker logs OpenSearch
Enabling OpenSearch Security Plugin
Enabling execution of install_demo_configuration.sh for OpenSearch Security Plugin
OpenSearch 2.12.0 onwards, the OpenSearch Security Plugin a change that requires an initial password for 'admin' user.
Please define an environment variable 'OPENSEARCH_INITIAL_ADMIN_PASSWORD' with a strong password string.
...
Note: For OpenSearch 2.12 and later, DISABLE_SECURITY_PLUGIN when set to true will automatically disable the security demo configuration setup and will no longer require DISABLE_INSTALL_DEMO_CONFIG to be explicitly set.
Nice when I replace this in the docker ENV it is working again as my needs
(tested on 2.12 and 2.13)
plugins.security.disabled: true by DISABLE_SECURITY_PLUGIN=true
On our local opensearch environments (in development environment), we don't need the security plugin
So we are using the option "plugins.security.disabled=true"
until version 2.11.1 this option did hes job, but now on upgrading to 2.12.0 this fails
(tested rollback to fixed version vs latest and the option is fine again)
The issue is probably upstream, but I have to start somewhere
docker logs OpenSearch
Enabling OpenSearch Security Plugin
Enabling execution of install_demo_configuration.sh for OpenSearch Security Plugin
OpenSearch 2.12.0 onwards, the OpenSearch Security Plugin a change that requires an initial password for 'admin' user.
Please define an environment variable 'OPENSEARCH_INITIAL_ADMIN_PASSWORD' with a strong password string.
...
Our Environment vars
Image: "opensearchproject/opensearch:latest",
Env: []string{
"cluster.name=opensearch-cluster",
"node.name=opensearch",
"discovery.seed_hosts=opensearch",
"cluster.initial_cluster_manager_nodes=opensearch",
"bootstrap.memory_lock=true",
"OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m",
"plugins.security.disabled=true",
},
The text was updated successfully, but these errors were encountered: