我已成功安装了包括 Filebeat 在内的完整 ELK Docker 堆栈。当我想注册 Filebeat 实例时,出现以下错误:
Error while enrolling: empty access_token
根据来源,如果响应不太好,则错误可以是任何事情。
filebeat.yml
:
filebeat.config:
modules:
path: /usr/share/filebeat/config/modules.d/*.yml
reload.enabled: false
filebeat.modules:
- module: apache2
processors:
- add_cloud_metadata: ~
output.elasticsearch:
hosts: 'http://elasticsearch:9200'
username: 'elastic'
password: 'changeme'
setup.kibana:
host: "http://kibana:5601/"
username: "elastic"
password: "changeme"
name: "apache-test"
怎么了?