简体   繁体   中英

Kibana user forbidden error {“statusCode”:403,“error”:“Forbidden”,“message”:“Forbidden”}

I just setup my xpack in elasticsearch 7.1.0 as below in elasticsearch.yml:

xpack.security.enabled: true discovery.type: single-node in my elasticsearch.yml

Then, i ran >elasticsearch-setup-passwords interactive and changed all my built-in user passwords.

this is the change i made in Kibana.yml

xpack.security.enabled: true 
elasticsearch.username: "kibana" 
elasticsearch.password: "password@123"

When i restarted Kibana, i ws prompted with a username password page, where i gave kibana/password@123 that i had set in my yml.

Im getting the below response:

{"statusCode":403,"error":"Forbidden","message":"Forbidden"}

Please help me out.

Configuring security in Kibana

To use Kibana with X-Pack security:

Update the following settings in the kibana.yml configuration file:

elasticsearch.username: "kibana" elasticsearch.password: "kibanapassword"

Set the xpack.security.encryptionKey property in the kibana.yml configuration file.

xpack.security.encryptionKey: "something_at_least_32_characters"

Optional: Change the default session duration.

xpack.security.sessionTimeout: 600000

Restart Kibana.

Please follow this link using-kibana-with-security

Resolution: using "elastic" user account instead of kibana fixed this issue.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM