摘要:
(1)下载软件 地址:https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-8-0 wget https://www.elastic.co/cn/downloads/past-releases/elasticsearch- 阅读全文
摘要:
1、Elasticsearch安装 elasticsearch官方地址:https://www.elastic.co/cn/ 官方文档:https://www.elastic.co/guide/index.html 官方下载地址:https://www.elastic.co/downloads/pa 阅读全文
摘要:
1、启动Elasticsearch集群 本文使用的Elasticsearch集群地址为: 192.168.10.101:9200 192.168.10.102:9200 192.168.10.103:9200 启动集群,访问:http://192.168.10.101:9200/_cluster/h 阅读全文
摘要:
摘要 我们可以将链路追踪数据放到MQ中,通过MQ将数据存储到数据库中,实现异步处理,提高项目的安全与性能 1、启动rabbitmq服务器 (默认已经安装了MQ) 开启虚拟机,通过以下命令启动RabbitMQ服务端。 systemctl start rabbitmq-server.service 访问 阅读全文
摘要:
前言 Zipkin Server默认存储追踪数据至内存中,这种方式并不适合生产环境,一旦server关闭重启或者服务崩溃,就会导致历史数据消失。Zipkin支持修改存储策略使用其他存储组件,支持MySQL,Elasticsearch等。 1、数据库脚本 (将链路追踪数据存储到MySQL中,实现同步处 阅读全文