bug_x

导航

 

1、安装elasticsearch

  https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html

    

docker pull docker.elastic.co/elasticsearch/elasticsearch:7.8.1

docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.8.1

  

2、安装kibana

      https://www.cnblogs.com/balloon72/p/13177872.html

docker pull kibana

docker run --restart=always --privileged=true -it --name kibana -e ELASTICSEARCH_HOSTS=http://172.17.0.3:9200 -p 5601:5601 -d kibana:7.8.1

  

posted on 2020-08-18 23:44  bug_x  阅读(216)  评论(0编辑  收藏  举报