本文主要是介绍EFK安装与使用!!!,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、将你的项目进行打包。
二、上传到docker, 启动项目
三、修改前端的代理路径
四、EFK相关配置
1、docker-compose.yml:
version: '3'
services:kibana:image: kibana:7.14.0ports:- "5601:5601"environment:- ELASTICSEARCH_HOSTS=http://192.168.11.91:9200- I18N_LOCALE="zh-CN"filebeat:image: elastic/filebeat:7.14.0volumes:- ./filebeat.yml:/usr/share/filebeat/filebeat.yml- /opt/logs:/usr/share/filebeat/logscommand: ["-e"]
2、filebeat.yml:
filebeat.inputs:
- type: logpaths:- /usr/share/filebeat/logs/*.logoutput.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#/
这篇关于EFK安装与使用!!!的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!