Home > Back-end >  Disable security or change password on elastic and kibana
Disable security or change password on elastic and kibana

Time:04-06

Hello i'am new with elastic search.

I followed this documentation in order to enable security, i set a password with only number and that is the main problem.

https://www.elastic.co/guide/en/elasticsearch/reference/7.12/security-minimal-setup.html

I found the problem when I wanted to login in kibana .(the image bellow).

enter image description here

Now i want to disable the security so i can work normally, or if there is some method which allow me change the password.

CodePudding user response:

I think you enabled the basic security using below config in your elasticsearch.yml

xpack.security.enabled: true

If you don't want that, you can simply disable it by changing it to false and restart your Elasticsearch nodes.

CodePudding user response:

well i disabled xpack.security but the problem persist, so i go to the list of the settings in the keystore and then i removed elastic.password , so it's not required to login.

  • Related