跳至主要內容
docker安装es及kibana
os:ubuntu22.04-lts

安装docker

sudo apt install docker.io
# 配置docker加速
{
    "registry-mirrors": [
        "https://dockerproxy.com",
        "https://mirror.baidubce.com",
        "https://docker.m.daocloud.io",
        "https://docker.nju.edu.cn",
        "https://docker.mirrors.sjtug.sjtu.edu.cn",
        "https://registry.docker-cn.com",
        "https://mirror.ccs.tencentyun.com",
        "http://hub-mirror.c.163.com"
    ]
}

爱喝水的木子...大约 1 分钟codeelasticsearchkibana
es看板的一些操作

GET _cat/indices?v

统计idex

GET _cat/count/car_taipingyang_info/?v

查看集群健康状态

GET _cat/health

查看集群健康状态 详细信息

GET _cat/health?v

查看节点信息及详细信息

GET _cat/nodes

GET _cat/nodes?v

查看es的index信息及详细信息

GET _cat/indices GET _cat/indices?v


爱喝水的木子...小于 1 分钟codeelasticsearchkibana