Kibana fails on that and generate a logout. I didn’t change neither SG configuration or version, it was already at version 3.1.2. I tried to reapply the SG configuration.
In Kibana logs, I can see:
[2025-10-06T11:40:02.754+02:00] [WARN ] [http.server.kbn-internal-api-restricted] [{"service":{"node":{"roles":["background_tasks","ui"]}}}] Access to uri [/api/streams/_status] with method [get] is deprecated
[2025-10-06T11:40:02.866+02:00] [ERROR] [plugins.security.authentication] [{"service":{"node":{"roles":["background_tasks","ui"]}}}] License is not available or does not support security features, re-authentication is not possible (available: true, enabled: false, unavailable reason: undefined).
AS I’m using Apache in front of Kibana, I was able to hide the suspected /api/streams/_status behind a 404, it didn’t change any thing, but I’m still getting
[2025-10-07T12:09:11.112+02:00] [ERROR] [plugins.security.authentication] [{"service":{"node":{"roles":["background_tasks","ui"]}}}] License is not available or does not support security features, re-authentication is not possible (available: true, enabled: false, unavailable reason: undefined).
@thorteschenk The reported 401 error is generated when `xpack.encryptedSavedObjects.encryptionKey` is configured in either kibana.yml or kibana.keystore.
This will also cause an infinite reload of the Kibana UI after successful proxy authentication.
Removing `xpack.encryptedSavedObjects.encryptionKey` will solve the proxy authentication loop.
However, this will also result in generating the following error in Kibana logs.
```
[2025-11-11T14:26:31.514+00:00][ERROR][plugins.streams] Error: Unable to create alerts client because the Encrypted Saved Objects plugin is missing encryption key. Please set xpack.encryptedSavedObjects.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.
at Object.getRulesClientWithRequest (/usr/share/kibana/node_modules/@kbn/alerting-plugin/server/plugin.js:444:15)
at AssetService.getClientWithRequest (/usr/share/kibana/node_modules/@kbn/streams-plugin/server/lib/streams/assets/asset_service.js:30:48)
at processTicksAndRejections (node:internal/process/task_queues:105:5)
at async Promise.all (index 1)
at getScopedClients (/usr/share/kibana/node_modules/@kbn/streams-plugin/server/plugin.js:129:75)
at handler (/usr/share/kibana/node_modules/@kbn/streams-plugin/server/routes/streams/management/route.js:105:9)
at wrappedHandler (/usr/share/kibana/node_modules/@kbn/server-route-repository/src/register_routes.js:61:13)
[2025-11-11T14:26:31.595+00:00][ERROR][http] 500 Server Error
```
The above error won’t kill the Kibana service. This issue is currently being investigated.