I want to restrict some users in kibana so that users can access individual panels in Kibana. I am using kibana version 6.0.0. I am currently using Searchguard to authenticate users, but I cannot restrict the user in the control panel. Below is my current elasticsearch.yml file
searchguard.ssl.transport.keystore_filepath: keystore.jks
searchguard.ssl.transport.truststore_filepath: truststore.jks
searchguard.ssl.transport.enforce_hostname_verification: false
searchguard.ssl.http.enabled: true
searchguard.ssl.http.keystore_filepath: keystore.jks
searchguard.ssl.http.truststore_filepath: truststore.jks
searchguard.authcz.admin_dn:
- "CN=kirk,OU=client,O=client,L=test, C=de"
- "CN=node-0.example.com, OU=SSL, O=Test, L=Test, C=DE"
cluster.name: searchguard_demo
network.host: 0.0.0.0
Please let me know if anyone has any idea.
source
share