Maxim Kitsenko
Maxim Kitsenko

Reputation: 2333

When "users" tab is disabled in EventStore

enter image description here

Why Users and LogOut are disabled in EventStore UI? I need them to change password. Event Store 23.10.0.0

Upvotes: 0

Views: 50

Answers (1)

Alexey Zimarev
Alexey Zimarev

Reputation: 19630

From the documentation:

When using the Insecure option for the server, all security is disabled. The Users menu item is also disabled in the Admin UI.

Basically, insecure mode means not only that you don't use TLS/HTTPS, but you disable all the security, including authorisation. That's why the Users tab doesn't make sense as you don't need user credentials when connecting from the client.

Upvotes: 1

Related Questions