《Centos7——elk+lnmp+zabbix+grafana来分析日志》

2023-11-15

目录

elk+lnmp+zabbix+grafana来分析日志

环境准备
3台Centos7
192.168.234.130 jdk+elasticsearch+kibana
192.168.234.131 jdk+logstash+zabbix-agent+lnmp
192.168.234.132 zabbix-server+grafana

在这里插入图片描述

一、 Elasticsearch部署(192.168.234.130)

1. 上传安装包

elasticsearch包

链接: https://pan.baidu.com/s/1x0VD4N_p4mC7kTKdHUGTrg 提取码: 84jw 复制这段内容后打开百度网盘手机App,操作更方便哦

jdk包

链接: https://pan.baidu.com/s/1OK2v74y6Bg7-jE47dCF8nA 提取码: ndrn 复制这段内容后打开百度网盘手机App,操作更方便哦

kibana包

链接: https://pan.baidu.com/s/1lsmMI9R3j7YZ16AcbKlEIw 提取码: kmht 复制这段内容后打开百度网盘手机App,操作更方便哦

2. 安装elasticsearch+kibana

[root@localhost ~]# systemctl stop firewalld;setenforce 0

[root@localhost ~]# rpm -ivh elasticsearch-7.3.2-x86_64.rpm kibana-7.3.2-x86_64.rpm

3. 修改es和kibana配置文件

[root@localhost ~]# vim /etc/elasticsearch/elasticsearch.yml
[root@localhost ~]# cat /etc/elasticsearch/elasticsearch.yml |egrep -v '^#|^$'
cluster.name: my-application #集群的名字
node.name: node-1 #节点的名字,在集群中是唯一的
path.data: /var/lib/elasticsearch
path.logs: /var/log/elasticsearch
network.host: 0.0.0.0 #监听的IP地址
http.port: 9200 #监听的端口
#发现的集群的其他elasticsearch节点
discovery.seed_hosts: ["192.168.234.130""] 
cluster.initial_master_nodes: ["192.168.234.130"]
#集群中有几个Elasticsearch 运行时,集群恢复正常
gateway.recover_after_nodes: 2

在这里插入图片描述
在这里插入图片描述

[root@localhost ~]# vim /etc/kibana/kibana.yml
[root@localhost ~]# cat /etc/kibana/kibana.yml |egrep -v '^$|^#'
server.port: 5601 #监听端口
server.host: "0.0.0.0" #监听IP
elasticsearch.hosts: ["http://192.168.234.130:9200"] #elasticsearch服务器地址
i18n.locale: "zh-CN" #设置页面语言为中文

在这里插入图片描述
在这里插入图片描述

4. 启动服务

启动Elasticsearch 并设置为开机自启

[root@localhost ~]# systemctl start elasticsearch kibana

[root@localhost ~]# systemctl enable elasticsearch kibana
Created symlink from /etc/systemd/system/multi-user.target.wants/elasticsearch.service to /usr/lib/systemd/system/elasticsearch.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/kibana.service to /etc/systemd/system/kibana.service.

[root@localhost ~]# netstat -lptnu|grep java
tcp6       0      0 :::9200                 :::*                    LISTEN      32844/java
tcp6       0      0 :::9300                 :::*                    LISTEN      32844/java
[root@localhost ~]# curl 192.168.234.130:9200
{
  "name" : "node-1",
  "cluster_name" : "my-application",
  "cluster_uuid" : "Ij96w1J5QyqIU1XpLCrmYA",
  "version" : {
    "number" : "7.3.2",
    "build_flavor" : "default",
    "build_type" : "rpm",
    "build_hash" : "1c1faf1",
    "build_date" : "2019-09-06T14:40:30.409026Z",
    "build_snapshot" : false,
    "lucene_version" : "8.1.0",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}

4. 访问页面进行可视化展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

二、 lnmp+logstash+zabbix-agent部署(192.168.234.131)

lnmp操作

1. 安装nginx依赖

[root@localhost ~]# systemctl stop firewalld;setenforce 0

[root@localhost ~]# yum -y install php php-mysql php-gd php-fpm mariadb mariadb-server gcc gcc-c++ pcre-devel zlib-devel zabbix-agent


2. 安装nginx

[root@localhost ~]# tar xzf nginx-1.12.2.tar.gz

[root@localhost ~]# cd nginx-1.12.2

[root@localhost nginx-1.12.2]# ./configure && make && make install

3. 修改nginx配置文件

[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf

在这里插入图片描述

4. 启动服务

[root@localhost ~]# /usr/local/nginx/sbin/nginx

[root@localhost ~]# systemctl start php-fpm mariadb

[root@localhost ~]# systemctl enable php-fpm mariadb
Created symlink from /etc/systemd/system/multi-user.target.wants/php-fpm.service to /usr/lib/systemd/system/php-fpm.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
[root@localhost ~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 5.5.68-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database ds character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> exit
Bye

5. 上线电商

上传电商包到/usr/localnginx/html

[root@localhost ~]# cd /usr/local/nginx/html/

[root@localhost html]# yum -y install unzip

[root@localhost html]# unzip tinyshopV2.5_data.zip

[root@localhost html]# chmod -R 777 .*

6. 访问网页(192.168.234.131)

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

logstash操作

logstash包

链接: https://pan.baidu.com/s/1C-UALUt_9PAYu9fKPmpySA 提取码: fg2s 复制这段内容后打开百度网盘手机App,操作更方便哦

jdk包

链接: https://pan.baidu.com/s/1OK2v74y6Bg7-jE47dCF8nA 提取码: ndrn 复制这段内容后打开百度网盘手机App,操作更方便哦

1. 安装logstash

[root@localhost ~]# rpm -ivh jdk-8u131-linux-x64_.rpm 

[root@localhost ~]# rpm -ivh logstash-7.3.2.rpm

2. 采集日志数据

nginx日志

[root@localhost ~]# cd /etc/logstash/conf.d/
[root@localhost ~]# vim nginx.conf
input { #收集的日志信息
        file { #收集的方式是文件形式
                path => "/usr/local/nginx/logs/access.log" #日志的绝对路径
                type => "nginx-log" #日志的类型,只是标签的含义,可以自定义名字
                start_position => "beginning" #从日志文件的最开始收集日志
        }
}
output { #日志的输出
        elasticsearch { #日志输出给elasticsearch
                hosts => "192.168.234.130:9200" #elasticsearch的IP和端口
                index => "nginx-log-%{+YYYY.MM.dd}" #日志的索引和日期后缀
        }
}

系统日志

[root@localhost ~]# cd /etc/logstash/conf.d/
[root@localhost ~]# vim nginx.conf
input {
        file {
                path => "/var/log/messages"
                type => "system-log"
                start_position => "beginning"
        }
}
output {
        elasticsearch {
                hosts => "192.168.234.130:9200"
                index => "nginx-log-%{+YYYY.MM.dd}"
        }
}
[root@localhost conf.d]# chmod +r /var/log/messages
[root@localhost ~]# cd /etc/logstash/
[root@localhost logstash]# vim pipelines.yml
- pipeline.id: nginx
  path.config: "/etc/logstash/conf.d/nginx.conf"
- pipeline.id: system
  path.config: "/etc/logstash/conf.d/system.conf"

在这里插入图片描述

3. 启动服务

[root@localhost ~]# systemctl start logstash

[root@localhost ~]# systemctl enable logstash
Created symlink from /etc/systemd/system/multi-user.target.wants/logstash.service to /etc/systemd/system/logstash.service.

[root@localhost ~]# netstat -lptnu|grep 9600
tcp6       0      0 127.0.0.1:9600          :::*                    LISTEN      77808/java

[root@localhost ~]# curl -X GET http://192.168.234.130:9200/_cat/indices?v #查看索引
health status index                uuid                   pri rep docs.count docs.deleted store.size pri.store.size
green  open   .kibana_task_manager q-WKgG_wQMCxtA7fDZQKjg   1   0          2            0     45.5kb         45.5kb
yellow open   nginx-log-2020.11.26 LTDk2PFbTvi98s989Dnrkw   1   1        964            0    364.9kb        364.9kb
yellow open   system-2020.11.26    c8IsWtvORpCCLlUa3I8KPQ   1   1         35            0     23.7kb         23.7kb
green  open   .kibana_1            q3wdSka5RsirL6-Bhm0UKA   1   0          2            0     11.3kb         11.3kb

在这里插入图片描述

zabbix-agent操作

zabbix的yum源

链接: https://pan.baidu.com/s/1p3hA10as_YpuJrxhdoCYlg 提取码: ks4m 复制这段内容后打开百度网盘手机App,操作更方便哦

上传zabbix_Aliyun.repo 到 /etc/yum.repos.d/

[root@localhost ~]# yum clean all
[root@localhost ~]# yum repolist

1. 安装zabbix-agent

[root@localhost ~]# yum -y install zabbix-agent

2. 修改配置文件

[root@localhost ~]# vim /etc/zabbix/zabbix_agentd.conf

[root@localhost ~]# cat /etc/zabbix/zabbix_agentd.conf |grep '^Server'
Server=192.168.234.132
ServerActive=192.168.234.132

在这里插入图片描述
在这里插入图片描述

3. 启动服务

[root@localhost ~]# systemctl start zabbix-agent

[root@localhost ~]# systemctl enable zabbix-agent
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-agent.service to /usr/lib/systemd/system/zabbix-agent.service.

收集nginx的pv、uv

1. 编写脚本

[root@localhost ~]# cd /etc/zabbix/

[root@localhost zabbix]# mkdir scripts

[root@localhost zabbix]# cd scripts/

[root@localhost scripts]# vim nginx_page.sh
#!/bin/bash
logfile="/usr/local/nginx/logs/access.log"

pv=$(cat $logfile | wc -l)
uv=$(awk '{print $1}' $logfile | sort | uniq |wc -l)

case $1 in
pv)
        echo $pv
;;
uv)
        echo $uv
;;
*)
        echo "./nginx_page.sh (pv|uv)"
esac
[root@localhost scripts]# chmod +x nginx_page.sh

[root@localhost scripts]# vim /etc/zabbix/zabbix_agentd.conf
UnsafeUserParameters=1  #开启用户自定义监控项
UserParameter=nginx[*],/etc/zabbix/scripts/page.sh $1  #定义的键值的名字:check_system

在这里插入图片描述

2. 重启zabbix-agent

[root@localhost scripts]# systemctl restart zabbix-agent

3. zabbix监控mysql库或表空间

三种方式(任意一种都可以)
方法一

[root@localhost ~]# vim /etc/my.cnf
[root@localhost ~]# cat /etc/my.cnf|egrep 'client|^user'
[client]
user=root

在这里插入图片描述
方法二

[root@localhost ~]# vim /etc/zabbix/zabbix_agentd.d/userparameter_mysql.conf

在这里插入图片描述
方法三
给zabbix授予权限

[root@localhost ~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 889
Server version: 5.5.68-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> grant select on *.* to zabbix@'localhost';
Query OK, 0 rows affected (0.04 sec)

三、 zabbix-server+grafana部署(192.168.234.132)

zabbix-server操作

1. 准备zabbix的yum源

zabbix的yum源

链接: https://pan.baidu.com/s/1p3hA10as_YpuJrxhdoCYlg 提取码: ks4m 复制这段内容后打开百度网盘手机App,操作更方便哦

上传zabbix_Aliyun.repo 到 /etc/yum.repos.d/

[root@localhost ~]# yum clean all
[root@localhost ~]# yum repolist

2. 安装zabbix-server

[root@localhost ~]# systemctl stop firewalld;setenforce 0

[root@localhost ~]# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent mariadb mariadb-server

3. 启动mariadb、并创建数据库

[root@localhost ~]# systemctl start mariadb
[root@localhost ~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.68-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all on zabbix.* to zabbix@'localhost' identified by 'zabbix';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit
Bye

4. 导入初始的数据

[root@localhost ~]# zcat /usr/share/doc/zabbix-server-mysql-4.2.8/create.sql.gz |mysql zabbix

5. 修改配置文件

[root@localhost ~]# vim /etc/zabbix/zabbix_server.conf
[root@localhost ~]# cat /etc/zabbix/zabbix_server.conf |egrep  '^DB'
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix

在这里插入图片描述

6. 修改时区

[root@localhost ~]# vim /etc/httpd/conf.d/zabbix.conf
[root@localhost ~]# cat /etc/httpd/conf.d/zabbix.conf|grep Asia/Shanghai
        php_value date.timezone Asia/Shanghai

在这里插入图片描述

7. 中文乱码

[root@localhost ~]# cd /usr/share/zabbix/assets/fonts/

[root@localhost fonts]# ls
graphfont.ttf  simkai.ttf

[root@localhost fonts]# mv simkai.ttf graphfont.ttf
mv:是否覆盖"graphfont.ttf"? yes

7. 启动服务

[root@localhost ~]#  systemctl start httpd zabbix-server zabbix-agent

[root@localhost ~]#  systemctl enable mariadb httpd zabbix-server zabbix-agent


[root@localhost ~]# netstat -lptnu|grep 10050
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      22053/zabbix_agentd
tcp6       0      0 :::10050                :::*                    LISTEN      22053/zabbix_agentd

访问网页(192.168.234.132/zabbix)

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

8. 安装数据采集工具

[root@localhost ~]# yum -y install zabbix-get

在zabbix-server服务器上测试连接zabbix-agent成功

[root@localhost ~]# zabbix_get -s 192.168.234.131 -k agent.ping #这里的命令是在zabbix-server服务器上执行、IP是被监控主机的,返回值为1测试成功
1
[root@localhost ~]# zabbix_get -s 192.168.234.131 -k nginx[pv]
80

[root@localhost ~]# zabbix_get -s 192.168.234.131 -k nginx[uv]
1

[root@localhost ~]# zabbix_get -s 192.168.234.131 -k mysql.status[Uptime]
11217

zabbix自动发现

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

添加nginx(pv|uv)监控项

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

创建图形

在这里插入图片描述
在这里插入图片描述

zabbix监控mysql库或表空间

查看mysql数据库数据大小

[root@localhost ~]# zabbix_get -s 192.168.234.131 -k mysql.size[mysql,,data]
555022

查看mysql数据库user表数据大小

[root@localhost ~]# zabbix_get -s 192.168.234.131 -k mysql.size[mysql,user,data]
324

1. 创建监控项

在这里插入图片描述

2. 创建图形

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

查看mysql的qps

在这里插入图片描述

grafana操作

grafana包

链接: https://pan.baidu.com/s/1v6adr7RfDXnwRQrxEwPsFg 提取码: hvv6 复制这段内容后打开百度网盘手机App,操作更方便哦

zabbix插件包

链接: https://pan.baidu.com/s/1XfJWlgE-FtKxyJz1EaiI3g 提取码: gc3h 复制这段内容后打开百度网盘手机App,操作更方便哦

1. 安装grafana

[root@localhost ~]# yum -y install grafana-7.3.3-1.x86_64.rpm

2. 启动服务

[root@localhost ~]# systemctl start grafana-server

[root@localhost ~]# netstat -lptnu|grep 3000
tcp6       0      0 :::3000                 :::*                    LISTEN      81025/grafana-serve

3. 上传zabbix插件

[root@localhost ~]# mv alexanderzobnin-zabbix-app-4.0.2.zip /var/lib/grafana/plugins/

[root@localhost ~]# cd /var/lib/grafana/plugins/

[root@localhost plugins]# yum -y install unzip

[root@localhost plugins]# unzip alexanderzobnin-zabbix-app-4.0.2.zip

[root@localhost plugins]# systemctl restart grafana-server 

4. 访问网页

在这里插入图片描述
在这里插入图片描述

收集nginx日志

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

展示网站PVUV

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

展示mysql库user表大小

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

《Centos7——elk+lnmp+zabbix+grafana来分析日志》 的相关文章

随机推荐

  • 改变antd-mobile中Modal的进入方式

    增加属性maskTransitionName 和 transitionName maskTransitionName zoom transitionName zoom zoom样式是 scale 0 2 scale 1 参考文档
  • XML语言

    XML XML是可扩展的标记语言 标记语言 通过标签来描述数据的一门语言 标签有时我们也将其称之为元素 可扩展 标签的名字是可以自定义的 XML文件是由很多标签组成的 而标签名是可以自定义的 xml学习网站https www w3schoo
  • p51 thinkpad 拆解_ThinkPad P51自己加装内存操作图解

    把全部螺丝拧松之后 从缺口发力 分别沿着两个方向逐步拉开盖板 最终把整个盖板拆下来 第二步 拆键盘螺丝 打开大盖板之后 还有三个键盘螺丝要拆 具体位置如图所示 图片看不清的话 注意查看螺丝附近的标记 看到是键盘标记的就拆下来就对了 这是三根
  • 安装 jupyter 和 numpy,并运行jupyter,完成numpy的不少于10道的基础练习,熟悉矩阵运算。

    文章目录 一 安装Anaconda 1 在Anaconda Navigator中无法打开jupyter 二 使用jupyter notebook完成编程 1 引入库 2 基础练习 三 总结 四 引用 一 安装Anaconda 在官方网站即可
  • 微信小程序组件的传参

    父子关系 1 父向子传参 子组件 通过 properties 声明要从父组件中接收的数据 组件的属性列表 properties tabId String 父组件 通过自定义属性的形式传递数据 以子组件中定义的 key 为属性名 以要传递的数
  • 等保2.0二级安全要求

    第二级安全保护能力 应能够防护免受来自外部小型组织的 拥有少量资源的威胁源发起的恶意攻击 一般的自然灾害 以及其他相当危害程度的威胁所造成的重要资源损害 能够发现重要的安全漏洞和处置安全事件 在自身遭到损害后 能够在一段事件内恢复部分功能
  • Android中字母大小写切换的快捷键

    1 选中要切换到字母 eclipse ctrl shift x 转为大写 ctrl shift y 转为小写 2 Androidstudio字母大小写切换用一下方法或直接使用快捷键 大小写转换 Cmd Shift U Ctrl Shift
  • 使用Docker-compose部署redis主从

    废话少说 直接来上docker compose yaml文件 切记格式 version 2 networks myweb external name mysql docker compose myweb services redis mas
  • ICLR 2022最佳论文解读

    微信公众号 圆圆的算法笔记 持续更新NLP CV 搜推广干货笔记和业内前沿工作解读 后台回复 交流 加入 圆圆的算法笔记 交流群 回复 时间序列 多模态 迁移学习 NLP 图学习 表示学习 元学习 等获取各个领域干货算法笔记 今天给大家介绍
  • Nginx配置详情

    Nginx1 16 0安装详见 CentOS7 3编译安装LNMP之 一 Nginx 1 16 0安装 本文以nginx1 16 0编译安装版为例 目录如下 usr local nginx nginx的安装目录 usr local ngin
  • “logits”到底是个什么意思?

    1 什么是logits 说到Logits 首先要弄明白什么是Odds 在英文里 Odds的本意是指几率 可能性 它和我们常说的概率又有什么区别呢 在统计学里 概率 Probability 描述的是某事件A出现的次数与所有事件出现的次数之比
  • Map双列集合的四种遍历方式

    Map双列集合的四种遍历方式 第一种 键找值遍历方式 通过keySet 方法可以获取到所有键组成的Set集合 public Set
  • 关于Streamspot中StreamHash的介绍

    原文 Fast Memory efficient Anomaly Detection in Streaming Heterogeneous Graphs 在阅读这篇文章时 我对于文中所提到的StreamHash方法特别费解 在重复阅读了好几
  • 解决SwipeRefreshLayout和ViewPager滑动冲突的三种方案

    一篇文章读懂android事件消费 事件分发 事件拦截Android 源码分析事件分发机制 事件消费 事件拦截解决SwipeRefreshLayout和ViewPager滑动冲突的三种方案 在SwipeRefreshLayout的内部包一个
  • 论坛系统数据库设计

    论坛系统数据库设计 1 引言 2 QQ 摆烂式 设计 2 1数据表设计猜测 2 2分析增删查改实现方法 2 3分析QQ 摆烂式 的优缺点 2 4改进方法 3 盖楼式 设计 3 1数据表设计猜测 3 2数据表设计优化 4 推荐设计 1 引言
  • Matlab----下载和安装教程

    Matlab 下载 文件中有以下文件 Matlab 安装 步骤1 打开安装软件 步骤2 运行安装软件 在matlab 2018的文件夹下找到setup 选中右键以管理员身份运行 步骤3 选择使用文件安装密钥 然后点击下一步 步骤4 是否接收
  • 【1day】复现金和协同管理平台任意文件读取漏洞

    注 该文章来自作者日常学习笔记 请勿利用文章内的相关技术从事非法测试 如因此产生的一切不良后果与作者无关 目录 一 漏洞描述 二 影响版本 三 资产测绘 四 漏洞复现 一 漏洞
  • Unity3D-VR《静夜诗》3-开始按钮与开始文本信息

    Unity3D VR 静夜诗 3 开始按钮与开始文本信息 1 开始按钮及开始信息文本UI对象的设计 1 1容器对象PanelBeginUI 1 2开始信息文本TextBegin 1 3开始按钮BtnBegin 2 开始按钮实现凝视触发 凝视
  • 521 加速乐多层响应 Cookie逆向 + 代码高度混淆

    网址 aHR0cHM6Ly93d3cubWFmZW5nd28uY24vaS81Mzc2OTc4Lmh0bWw 目录 声明 本文章中所有内容仅供学习交流使用 不用于其他任何目的 不提供完整代码 抓包内容 敏感网址 数据接口等均已做脱敏处理 严
  • 《Centos7——elk+lnmp+zabbix+grafana来分析日志》

    目录 elk lnmp zabbix grafana来分析日志 一 Elasticsearch部署 192 168 234 130 1 上传安装包 2 安装elasticsearch kibana 3 修改es和kibana配置文件 4 启