一、将你的项目进行打包。
二、上传到docker, 启动项目
三、修改前端的代理路径
四、EFK相关配置
1、docker-compose.yml:
version: '3'
services:
kibana:
image: kibana:7.14.0
ports:
- "5601:5601"
environment:
- ELASTICSEARCH_HOSTS=http://192.168.11.91:9200
- I18N_LOCALE="zh-CN"
filebeat:
image: elastic/filebeat:7.14.0
volumes:
- ./filebeat.yml:/usr/share/filebeat/filebeat.yml
- /opt/logs:/usr/share/filebeat/logs
command: ["-e"]
2、filebeat.yml:
filebeat.inputs:
- type: log
paths:
- /usr/share/filebeat/logs/*.log
output.elasticsearch:
hosts: ["192.168.11.91:9200"]
3、拉去镜像
//进入到 /opt/efk/目录中
docker-compose up -d
五、打开Elastic浏览数据
http://192.168.11.91:5601/app/home#/http://192.168.11.91:5601/app/home#/