/usr/share/logstash/bin/logstash-f /etc/logstash/conf.d/logstash.conf --config.test_and_exit
**如果报错:WARNING: Could not find logstash.yml which is typically located in $LS_HOME/config or /etc/logstash. You can specify the path using –path.settings. **
解决办法:
cd /usr/share/logstashln -s /etc/logstash ./config
3.2.8、logstash指定配置进行运行指定logstash.conf配置文件,以后台的方式运用,执行这段命令之后,需要回车一下
nohup /usr/share/logstash/bin/logstash -f /etc/logstash/conf.d/logstash.conf &
检查logstash是否启动
ps -ef|grep logstash
显示如下信息,说明启动了
文章插图
3.3、kibana安装3.3.1、安装kibana
rpm -ivh kibana-6.1.0-x86_64.rpm
搜索rpm包rpm -ql kibana
默认是装在/usr/share/kibana/下 。3.3.2、修改kibana.yml修改kibana的配置文件
vim /etc/kibana/kibana.yml
内容如下:#kibana页面映射在5601端口server.port: 5601#允许所有ip访问5601端口server.host: "0.0.0.0"#elasticsearch所在的ip及监听的地址elasticsearch.url: "http://localhost:9200"
3.3.3、启动kibana启动systemctl start kibana
查看状态systemctl status kibana
设置开机启动systemctl enable kibana
3.4、配置nginx 访问3.4.1、安装nginx和http用户认证工具yum -y install epel-releaseyum -y install nginx httpd-tools
3.4.2、修改nginx配置cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bakvim /etc/nginx/nginx.conf
将location配置部分,注释掉文章插图
创建kibana.conf文件
vim /etc/nginx/conf.d/kibana.conf
内容如下:server {listen 8000; #修改端口为8000server_name kibana;#auth_basic "Restricted Access";#auth_basic_user_file /etc/nginx/kibana-user;location / {proxy_pass http://127.0.0.1:5601; #代理转发到kibanaproxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection 'upgrade';proxy_set_header Host $host;proxy_cache_bypass $http_upgrade;}}
重新加载配置文件systemctl reload nginx
到这一步,elk基本配置完了,输入如下命令,启动服务# 启动ELK和nginxsystemctl restart elasticsearch logstash kibana nginx#查看ELK和nginx启动状态systemctl status elasticsearch logstash kibana nginx
在浏览器输入ip:8000, 就可以访问了kibana04、linux节点服务器安装配置filebeat4.1、安装filebeat
yum localinstall -y filebeat-6.2.4-x86_64.rpm
4.2、启动kibana启动systemctl start filebeat
查看状态systemctl status filebeat
设置开机启动systemctl enable filebeat
4.3、修改配置Filebeat编辑filebeat.yml文件vim /etc/filebeat/filebeat.yml
#============= Filebeat prospectors ===============filebeat.prospectors:- input_type: logenabled: true #更改为true以启用此prospectors配置 。paths:#支持配置多个文件收集目录#- /var/log/*.log- /var/log/messages#==================== Outputs =====================#------------- Elasticsearch output ---------------#output.elasticsearch:# Array of hosts to connect to.#hosts: ["localhost:9200"]#---------------- Logstash output -----------------output.logstash:# The Logstash hostshosts: ["localhost:5044"]
注意:注释掉Elasticsearch output下面的部分,将Filebeat收集到的日志输出到 Logstash output最后重启服务
systemctl restart filebeat
4.4、登录kibana,创建索引,并且搜集数据 文章插图
文章插图
文章插图
ELK+ Filebeat的安装,到此,就基本结束了,以上只是简单的部署完了 。
但是,还满足不了需求,比如,一台服务器,有多个日志文件路径,改怎么配置,接下来,我们来分类创建索引!
05、Filebeat收集多个Tomcat目录下的日志5.1、修改filebeat.yml配置文件
vim /etc/filebeat/filebeat.yml
配置多个paths收集路径,并且使用fields标签配置自定义标签log_topics,以方便做索引判断,如下:filebeat.prospectors:- type: logenabled: truepaths:- /usr/tomcat7-ysynet/logs/default/common_monitor.logmultiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}'multiline.negate: truemultiline.match: afterfields:log_topics: spd-ysynet- type: logenabled: truepaths:- /usr/tomcat7-ysynet-sync/logs/default/common_monitor.logmultiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}'multiline.negate: truemultiline.match: afterfields:log_topics: spd-ysynet-sync- type: logenabled: truepaths:- /usr/tomcat7-hscm/logs/default/common_monitor.logmultiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}'multiline.negate: truemultiline.match: afterfields:log_topics: spd-hscm- type: logenabled: truepaths:- /usr/tomcat7-hscm-sync/logs/default/common_monitor.logmultiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}'multiline.negate: truemultiline.match: afterfields:log_topics: spd-hscm-sync
推荐阅读
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 网店的转让 店铺转让费用是怎么算的
- 梦见几个棺材放在一起 梦见三个棺材放在一起两黑一红是什么征兆
- 整个银河系的恒星都在绕着银河系的什么运动 在浩淼的银河系中,有一颗小行星
- 第二次世界大战后很快形成的东西方 这是一个发生在第二次世界大战中期
- 更改硬件后如何重新激活Windows10,详细答案在这里
- 3招教你win10提速,解决80%电脑卡慢问题,值得收藏
- 在家洗羽绒服的小窍门 羽绒服味道大用清水洗一下可以吗
- 无锡梅村是不是很穷 终极笔记是在无锡梅村拍摄的吗
- 真皮背包怎么清洗 户外背包怎么清洗
- 同一网络中如何配置多个路由器?