I installed the version of opendistroforelasticsearch-kibana 1.0.0 and saw this error.
The next line is not commented out.
import { KibanaMigrator} from “…/…/…/…/src/legacy/server/saved_objects/migrations/kibana”;
I would be grateful for the help.
I installed the version of opendistroforelasticsearch-kibana 1.0.0 and saw this error.
The next line is not commented out.
import { KibanaMigrator} from “…/…/…/…/src/legacy/server/saved_objects/migrations/kibana”;
I would be grateful for the help.
Hello i have the same problem here, the line is uncommented, could you fix it eventually?
Same issue here and same error reported by @misiakj:
[error][migration] Authorization Exception :: {"path":"/_opendistro/_security/tenantinfo","query":{},"statusCode":403,"response":""}
at respond (C:\elk\kibana-7.2.0-windows-x86_64\node_modules\elasticsearch\src\lib\transport.js:315:15)
at checkRespForFailure (C:\elk\kibana-7.2.0-windows-x86_64\node_modules\elasticsearch\src\lib\transport.js:274:7)
at HttpConnector.<anonymous> (C:\elk\kibana-7.2.0-windows-x86_64\node_modules\elasticsearch\src\lib\connectors\http.js:166:7)
at IncomingMessage.wrapper (C:\elk\kibana-7.2.0-windows-x86_64\node_modules\elasticsearch\node_modules\lodash\lodash.js:4935:19)
at IncomingMessage.emit (events.js:194:15)
at endReadableNT (_stream_readable.js:1103:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
Uncommenting the multitenancy configuration part in /elasticsearch/plugins/opendistro_security/securityconfig/config.yml
as suggested above by @misiakj himself didn’t work in my case.
I have opened an issue about this.
Issue is still observed with security plugin 1.1.0.0 and Kibana 7.1.1
Kindly let us know how to resolve this?
I resolved this issue by deleting the offending index.
Can you please explain more? I have the same problem.
Hello everyone,
Can you please share your solution? I cannot disable multitenancy. Here is my issue:
me, too!!
this problem is zombie form hell!!!
I added a node and tried to disable multitenancy, it seems OK now. But some problems when I login with other users. I really need multitenancy feature.
Encountered the same issue with SearchGuard, while upgrading from 6.6.2-18.5 to 6.6.2-19.0
An ugly hack though, but deleting all tenant indices & templates i.e. indices like kibana__<version_number> & then restarting kibana solved the issue as it didn’t need to do the migration in this way. Make sure to backup these using a tool like elasticdump. The tenant indices then could be restored if needed.
Hy, i have de some ploblem
I need help, pleasy. .
I have the same issue every time I restart Opendistro. What I do is:
{"type":"log","@timestamp":"YYYY-MM-DDTHH:mm:ssZ","tags":["warning","migrations"],"pid":1,"message":"Another Kibana instance appears to be migrating the index. Waiting for that migration to complete. If no other Kibana instance is attempting migrations, you can get past this message by deleting index .kibana_-xxxxxxxxx_somename_yyyyy and restarting Kibana."}
curl -k -XDELETE "https://admin:PASSWORD@localhost:9200/.kibana_-xxxxxxxxx_somename_yyyyy"
You will delete that .kibana
index, but I didn’t find a better solution.
At ES/Kibana 1.4.0, It is weird but I solved this issue.
I have same issue even though delete all “.kibana_*” indices.
I uncommented these lines at kibana.yml:
#elasticsearch.requestHeadersWhitelist: [“securitytenant”,“Authorization”]
#opendistro_security.multitenancy.enabled: true
#opendistro_security.multitenancy.tenants.enable_global: true
#opendistro_security.multitenancy.tenants.enable_private: true
#opendistro_security.multitenancy.tenants.preferred: [“Private”, “Global”]
#opendistro_security.multitenancy.enable_filter: false
and I can access security config with internal users only…