Hi,
I have an issue since cluster and beats has bee updated to 6.7
i have a Nginx front-end that handle basic-auth to access ES.
Steps done:
Old keystore seems to not be recognized since update. ( filebeat keystore list reply nothing )
When password is in filebeat.yml (in clear), there is no issue.
When recreating keystore, Nginx replay with an Error 401.
Same error on filebeat and metricbeat
filebeat config:
filebeat.config:
inputs:
enabled: true
path: /etc/filebeat/inputs.d/*.yml
reload.enabled: true
reload.period: 30s
modules:
enabled: true
path: /etc/filebeat/modules.d/*.yml
reload.enabled: true
reload.period: 30s
processors:
- add_locale:
format: abbreviation
- add_cloud_metadata: ~
- add_host_metadata: ~
output.elasticsearch:
hosts: ["https://ip:port"]
ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]
username: "beats"
password: "$(ES_PWD)"
setup.template.settings:
index.number_of_shards: 1
index.number_of_replicas: 0
setup.kibana:
host: "ip:port"
protocol: "https"
ssl.enabled: true
ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]
username: kibana
password: "${KI_PWD}"