elasticSearch
-
docker pull docker.io/elasticsearch:6.8.4
查看版本号 https://elasticsearch.cn/download/
-
docker images
查看镜像id,例如下面命令中的5acf0e8da90b
docker run -d --name elasticSearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" 5acf0e8da90b
docker exec -it elasticSearch /bin/bash
- 修改配置文件
#/usr/share/elasticsearch/config/elasticsearch.yml跨域配置
cluster.name: "qfcwx-cluster"
network.host: 0.0.0.0
http.cors.enabled: true
http.cors.allow-origin: "*"
#/usr/share/elasticsearch/config/jvm.options修改参数
-Xms512m
-Xmx512m
#/etc/security/limits.conf 在文档尾追加
* soft nofile 65536
* hard nofile 65536
#/etc/sysctl.conf 在文档尾追加
vm.max_map_count=655360
kibana
-
docker pull kibana:6.8.4
查看版本号 https://elasticsearch.cn/download/
-
docker images
查看镜像id,例如下面命令中的bd983cfe8343
docker run --name kibana -e -p 5601:5601 -d bd983cfe8343
docker exec -it kibana /bin/bash
- 修改配置文件
#/config/kibana.yml
server.name: kibana
#此处改为0.0.0.0,默认为0
server.host: "0.0.0.0"
#此处改为elasticsearch访问ip
elasticsearch.hosts: [ "http://192.168.0.101:9200" ]
xpack.monitoring.ui.container.elasticsearch.enabled: true
-
docker restart kibana
重启kibana容器
网友评论