一:下载SkyWalking文件
访问github地址:https://github.com/apache/skywalking
官方给出的文档地址:https://github.com/apache/skywalking/tree/master/docs/en
安装直接去:https://github.com/apache/skywalking/tags 下载指定版本文件
二:准备好elasticsearch 数据库,下载elasticsearch-6.3.2,进入configelasticsearch.yml 设置配置文件
cluster.name: jachs transport.tcp.port: 5000 transport.tcp.compress: true http.port: 5500 # 增加新的参数,这样head插件可以访问es http.cors.enabled: true http.cors.allow-origin: "*" network.host: 127.0.0.1 http.host: 0.0.0.0
三:配置skywalking,进入 config
3.1:找到storage节点,设置 selector: ${SW_STORAGE:elasticsearch}
3.2找到storage.elasticsearch.clusterNodes 设置 clusterNodes: ${SW_STORAGE_ES_CLUSTER_NODES:127.0.0.1:5500} 指定本机Es http端口