Versions : OpenSearch Dashboard 2.8.0 (tarball installation)
Describe the issue:
After setting up Opensearch Dashboard I got it to connect to my Opensearch Instance.
But during startup the following Error Message shows in the log:
error: 'no handler found for uri [/_plugins/_security/tenantinfo] and method [GET]
And of course if I try to authenticate on the webpage I get an error:
Invalid username or password. Please try again.
And in the log:
Failed authentication: Error: no handler found for uri [/_plugins/_security/authinfo] and method [GET]
Configuration:
opensearch_dashboards.yml:
server.port: 5601
server.host: “xxxxx”
server.name: “opensearch-dashboard-test”
opensearch.hosts: “http://xxxxx”
server.ssl.enabled: false
opensearch.ssl.verificationMode: none
opensearch.username: kibanaserver
opensearch.password: kibanaserver
opensearch.requestHeadersWhitelist: [authorization, securitytenant]
opensearch_security.multitenancy.enabled: true
opensearch_security.multitenancy.tenants.preferred: [Private, Global]
opensearch_security.readonly_mode.roles: [kibana_read_only]
opensearch_security.cookie.secure: false
Tried to find a solution in the forum and google, but found nothing that helped.
Do I have to setup TLS or is there a way without it? Or is there just an issue with my config?
I have not touched any other file so far.