Hello,
When i add http.type: ssl_netty4 in elasticsearch.yml, i have the error unsupported http.type ssl_netty4.
The line xpack.security.enabled: false is present in the file.
i also set to false xpack.security.http.ssl and xpack.security.transport.ssl
I also tried to add # for all the other xpack lines in eleasticsearch.yml but in that case i have this error : invalid configuration for xpack.security.transport.ssl - [xpack.security.transport.ssl.enabled] is not set, but the following settings have been configured in elasticsearch.yml : [xpack.security.transport.ssl.keystore.secure_password,xpack.security.transport.ssl.truststore.secure_password]
It’s probably an error in my readonlyrest.yml but i don’t find what’s wrong.
I tried with different keystore.jks files (self signed or not) but the error still the same.
Here is the content of my readonlyrest.yml
readonlyrest:
ssl:
keystore_file: “keystore.jks”
keystore_pass: readonlyrest
key_pass: readonlyrest
access_control_rules:
-
name: “Require HTTP Basic Auth”
type: allow
auth_key: elastic:mypassword -
name: Accept requests from cloud1 on my_index
groups: [“cloud1”]
indices: [“myindex”]
users:
- username: elastic
auth_key: elastic:mypassword
groups: [“cloud1”]
Can you help my to find what’s wrong ?
Thank’s for your help.