我正在使用ES 5.0,Kibana 5.0 alpha4和各种节拍向ES发送数据。一开始一切都很顺畅。但是,过了一天,节拍突然无法将节拍发送给ES。我一直在使用不同的节拍,包括winlogbeat,metribeats等。他们都突然停止工作。
错误如图所示
2016/07/16 15:22:15.259659 single.go:130: INFO Connecting error publishing events (retrying): 401 Unauthorized
2016/07/16 15:22:15.259695 single.go:145: INFO send fail
会出现什么问题?
答案 0 :(得分:1)
您已在Elasticsearch服务器上启用了身份验证,例如Shield(Security)
。
将其放入Beats
配置
elasticsearch:
username: `Your username here`
password: `Your password here`
protocol: `Choose your protocol here (http or https)`
hosts: `Array of Elasticsearch hosts like ["elasticsearch.example.com:9200"] `