错误 x509:Metricbeat 中的证书由未知机构签名

发布于 2025-01-11 14:12:01 字数 177 浏览 0 评论 0原文

我尝试将Metricbeats 值传递给elasticsearch 集群。在检查测试输出时,我遇到了这个错误。任何人都知道如何解决这个问题。

输出

I try to pass Metricbeats values to elasticsearch cluster. while checking test output i faced this error.any one know how to fix this.

Output

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

病毒体 2025-01-18 14:12:01

这对我来说效果很好:

metricbeat.yml

   setup.kibana:   
     host: "hostname:5601"

   
   # ---------------------------- Elasticsearch Output ----------------------------
   output.elasticsearch:
     # Array of hosts to connect to:
     hosts: ["https://hostname:9200"]   
     protocol: "https"
  
     username: "elastic"
     password: "your-password"
   
     ssl.certificate_authorities: ["/path/to/elasticsearch/certs/certificate.pem"]

相应地调整您的主机名端口

希望这有帮助。

This worked fine for me:

metricbeat.yml

   setup.kibana:   
     host: "hostname:5601"

   
   # ---------------------------- Elasticsearch Output ----------------------------
   output.elasticsearch:
     # Array of hosts to connect to:
     hosts: ["https://hostname:9200"]   
     protocol: "https"
  
     username: "elastic"
     password: "your-password"
   
     ssl.certificate_authorities: ["/path/to/elasticsearch/certs/certificate.pem"]

Adjust your hostnames and ports accordingly.

Hope this helped.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文