根据ELK官网指引部署ELK- ECK-Elastic- Kibana-Learn-ELK-(一)

**Attention:
        1、You need open the ELK official website and step by step to deploy .

        2、If you copy my command ,you must check them if it not match your environment . 

一、official website 

Elastic documentation | Elastic

Check there.

二、 ECK简介

使用Kubernetes Operator 方式部署ELK,可以让你最简单的方式来管理和部署你的ELK全家桶。

三、Deploy Operator  On your Kubetnetes

老规矩,所有的 Operator 都有自己配套的CRD资源。

先部署扩展 CRD扩展资源,然后部署Operato。

执行:
 

kubectl get po -n elastic-system

已经验证。 

2.Deploy Elasticsearch cluster

 

Just copy and deploy it  , The important thing is check the deploy namespace .By default is deploy in default namespace.

官网给出了部署完毕验证的方式。

验证成功截图如下:

3.Deploy Kibana​​​​​​​ instance

Deploy way is same like Elasticsearch cluster.

By default when you deploy the Kibana instance, it will deploy a svc called :"quickstart-kb-http",you can change the service type to "NodePort" then visit the web.

4.visit the web.

need take a note ,cause in the app pods them have self cert .you need used https to visit .

5.the user and passwd.

by default user is elastic,

the password is into the secret called :"quickstart-es-elastic-user".

you can command this to get password.

kubectl get secret quickstart-es-elastic-user -n yournamespace -o=jsonpath='{.data.elastic}' | base64 --decode; echo

*Change  the namespace  .

5.login in 

相关推荐

  1. ELK

    2024-04-14 09:28:04       43 阅读
  2. ELK Stack入门之部署EFK架构

    2024-04-14 09:28:04       19 阅读
  3. linux系统elk组件kibana部署

    2024-04-14 09:28:04       48 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-14 09:28:04       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-14 09:28:04       101 阅读
  3. 在Django里面运行非项目文件

    2024-04-14 09:28:04       82 阅读
  4. Python语言-面向对象

    2024-04-14 09:28:04       91 阅读

热门阅读

  1. 【爬虫】在Scrapy中配置随机User-Agent中间件

    2024-04-14 09:28:04       88 阅读
  2. Linux生态系统:探索Linux的开源世界

    2024-04-14 09:28:04       37 阅读
  3. 牛客_顺时针打印矩阵_C++题解

    2024-04-14 09:28:04       39 阅读
  4. AIGC示例代码

    2024-04-14 09:28:04       38 阅读
  5. 大模型之一:大语言模型预训练的过程

    2024-04-14 09:28:04       32 阅读
  6. C#-NGWS runtime

    2024-04-14 09:28:04       31 阅读