文章目录

  • 前言
    • windows 单机 - elasticsearch-7.11.1 、kibana-7.11.1 安装部署
      • 01 elasticsearch-7.11.1 下载安装
        • 01::01 下载
        • 01::02 配置信息修改
        • 01::03 启动
        • 02:04 测试
      • 02 kibana-7.11.1 安装部署
        • 02::01 下载
        • 02::02 修改配置
        • 02::03 启动
        • 02::04 测试
      • 03 通过kibana 查看elasticsearch

前言

  如果您觉得有用的话,记得给博主点个赞,评论,收藏一键三连啊,写作不易啊^ _ ^。
  而且听说点赞的人每天的运气都不会太差,实在白嫖的话,那欢迎常来啊!!!


windows 单机 - elasticsearch-7.11.1 、kibana-7.11.1 安装部署

01 elasticsearch-7.11.1 下载安装

01::01 下载

elasticsearch-7.11.1 下载

01::02 配置信息修改

# ======================== Elasticsearch Configuration =========================
#
# NOTE: Elasticsearch comes with reasonable defaults for most settings.
#       Before you set out to tweak and tune the configuration, make sure you
#       understand what are you trying to accomplish and the consequences.
#
# The primary way of configuring a node is via this file. This template lists
# the most important settings you may want to configure for a production cluster.
#
# Please consult the documentation for further information on configuration options:
# https://www.elastic.co/guide/en/elasticsearch/reference/index.html
#
# ---------------------------------- Cluster -----------------------------------
#
# Use a descriptive name for your cluster:
#
#集群名称,默认可以不修改,此处es-cluster
cluster.name: es-cluster
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
#节点名称,必须修改,默认修改为当前机器名称,若是多示例则需要区分
node.name: ${HOSTNAME}-9200
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#
# ----------------------------------- Paths ------------------------------------
#
# Path to directory where to store the data (separate multiple locations by comma):
#
# 数据目录与日志目录,默认在当前运行程序下,生产环境需要指定
# 指定到此目录
path.data: F:\es\elasticsearch-7.11.1-windows-x86_64\data
#
# Path to log files:
#
path.logs: F:\es\elasticsearch-7.11.1-windows-x86_64\logs
#
# ----------------------------------- Memory -----------------------------------
#
# Lock the memory on startup:
#
# 内存交换锁定,此处需要操作系统设置才生效
bootstrap.memory_lock: true
#
# Make sure that the heap size is set to about half the memory available
# on the system and that the owner of the process is allowed to use this
# limit.
#
# Elasticsearch performs poorly when the system is swapping the memory.
#
# ---------------------------------- Network -----------------------------------
#
# Set the bind address to a specific IP (IPv4 or IPv6):
#
# IP地址,默认是local,仅限本机访问,外网不可访问,设置0.0.0.0通用做法
network.host: 172.20.10.3
#
# Set a custom port for HTTP:
#
# 访问端口,默认9200,9300,建议明确指定
http.port: 9200
transport.port: 9300
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when this node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#
# 默认单节点集群模式
discovery.type: single-node
#
# 节点发现
# discovery.seed_hosts: ["192.168.181.132:9300"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
# 集群初始化节点(单节点集群模式会报错,这里先注释)
# cluster.initial_master_nodes: ["192.168.181.132:9300"]
#
# For more information, consult the discovery and cluster formation module documentation.
#
# 部分电脑CPU不支持SSE4.2+,启动会报错,设置禁用机器学习功能
xpack.ml.enabled: false
#
# ---------------------------------- Gateway -----------------------------------
#
# Block initial recovery after a full cluster restart until N nodes are started:
#
#gateway.recover_after_nodes: 3
#
# For more information, consult the gateway module documentation.
#
# ---------------------------------- Various -----------------------------------
#
# Require explicit names when deleting indices:
#
# 防止批量删除索引
action.destructive_requires_name: true
#
# 设置处理器数量,默认无需设置,单机器多实例需要设置
node.processors: 4
#
# 访问允许跨域(比如:head插件等访问ES集群需要配置这个)
http.cors.enabled: true
http.cors.allow-origin: "*"

01::03 启动


双击 elasticsearch.bat

02:04 测试

http://172.20.10.3:9200/

02 kibana-7.11.1 安装部署

02::01 下载

kibana-7.11.1下载

02::02 修改配置

# Kibana is served by a back end server. This setting specifies the port to use.
# 访问端口,默认无需修改
server.port: 5601# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
# 访问地址IP,默认本地
server.host: "172.20.10.3"# Enables you to specify a path to mount Kibana at if you are running behind a proxy.
# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
# from requests it receives, and to prevent a deprecation warning at startup.
# This setting cannot end in a slash.
#server.basePath: ""# Specifies whether Kibana should rewrite requests that are prefixed with
# `server.basePath` or require that they are rewritten by your reverse proxy.
# This setting was effectively always `false` before Kibana 6.3 and will
# default to `true` starting in Kibana 7.0.
#server.rewriteBasePath: false# Specifies the public URL at which Kibana is available for end users. If
# `server.basePath` is configured this URL should end with the same basePath.
#server.publicBaseUrl: ""# The maximum payload size in bytes for incoming server requests.
#server.maxPayloadBytes: 1048576# The Kibana server's name.  This is used for display purposes.
#server.name: "your-hostname"# The URLs of the Elasticsearch instances to use for all your queries.
# ES服务指向,集群下配置多个
elasticsearch.hosts: ["http://172.20.10.3:9200"]# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
# dashboards. Kibana creates a new index if the index doesn't already exist.
# kibana元数据存储索引名称,默认.kibana无需修改
kibana.index: ".kibana"# The default application to load.
#kibana.defaultAppId: "home"# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
#elasticsearch.username: "kibana_system"
#elasticsearch.password: "pass"# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
#server.ssl.enabled: false
#server.ssl.certificate: /path/to/your/server.crt
#server.ssl.key: /path/to/your/server.key# Optional settings that provide the paths to the PEM-format SSL certificate and key files.
# These files are used to verify the identity of Kibana to Elasticsearch and are required when
# xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.
#elasticsearch.ssl.certificate: /path/to/your/client.crt
#elasticsearch.ssl.key: /path/to/your/client.key# Optional setting that enables you to specify a path to the PEM file for the certificate
# authority for your Elasticsearch instance.
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]# To disregard the validity of SSL certificates, change this setting's value to 'none'.
#elasticsearch.ssl.verificationMode: full# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
# the elasticsearch.requestTimeout setting.
#elasticsearch.pingTimeout: 1500# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
# must be a positive integer.
#elasticsearch.requestTimeout: 30000# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
# headers, set this value to [] (an empty list).
#elasticsearch.requestHeadersWhitelist: [ authorization ]# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
#elasticsearch.customHeaders: {}# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
#elasticsearch.shardTimeout: 30000# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
#elasticsearch.logQueries: false# Specifies the path where Kibana creates the process ID file.
#pid.file: /run/kibana/kibana.pid# Enables you to specify a file where Kibana stores log output.
#logging.dest: stdout# Set the value of this setting to true to suppress all logging output.
#logging.silent: false# Set the value of this setting to true to suppress all logging output other than error messages.
#logging.quiet: false# Set the value of this setting to true to log all events, including system usage information
# and all requests.
#logging.verbose: false# Set the interval in milliseconds to sample system and process performance
# metrics. Minimum is 100ms. Defaults to 5000.
#ops.interval: 5000# Specifies locale to be used for all localizable strings, dates and number formats.
# Supported languages are the following: English - en , by default , Chinese - zh-CN .
#i18n.locale: "en"
i18n.locale: "zh-CN"

02::03 启动


双击 kibana.bat

02::04 测试

http://172.20.10.3:5601/

03 通过kibana 查看elasticsearch

点击默认空间

然后按照下面截图点击


windows 单机 - elasticsearch-7.11.1 、kibana-7.11.1 安装部署相关推荐

  1. elasticsearch 7.8.0 kibana 7.8.0安装部署

    下载es.kibana 在这里 下载elasticsearch 7.8.0 版本 在这里 下载kibana7.8.0版本 下载后的文件:elasticsearch-7.8.0-linux-x86_64 ...

  2. 使用Docker快速安装部署ES和Kibana并配置IK中文分词器以及自定义分词拓展词库

    使用Docker快速安装部署ES和Kibana的前提:首先需要确保已经安装了Docker环境 如果没有安装Docker的话,可以参考上一篇的内容:Linux上安装Docker 有了Docker环境后, ...

  3. ELK入门(十八)——Kibana APM server安装部署

    一.前言 安装内容: elasticsearch-7.10.1-linux-x86_64.tar.gz(依赖,注意版本) kibana-7.10.1-linux-x86_64.tar.gz(依赖,注意 ...

  4. 使用docker安装部署kibana

    项目场景: 项目场景:使用docker安装部署kibana 前提:已成功部署安装elasticsearch   可参考文章链接: <使用docker安装部署elaticsearch>. 1 ...

  5. Elasticsearch、Logstash、Kibana搭建统一日志分析平台

    ELKstack是Elasticsearch.Logstash.Kibana三个开源软件的组合.目前都在Elastic.co公司名下. ELK是一套常用的开源日志监控和分析系统,包括一个分布式索引与搜 ...

  6. Linux单机到Windows的OGG安装部署步骤

    OGG安装部署步骤 (linux单机到windows) 检查 Goldengate通过抓取源端数据库重做日志进行分析,将获取的数据应用到目标端,实现数据同步.因此,源数据库需要必须处于归档模式,并启用 ...

  7. 使用 elasticsearch、LogStash、Kibana完成网站流量的监控系统(基于nginx的访问日志实现流量监控)

    分布式带来的变革: 多节点.日志分散.运维成本高 先看几个实际的案例. 各自的解决方案 一些比较主流的集中式日志管理系统 简单的Rsyslog 商业化的 Splunk 开源的有 Facebook 公司 ...

  8. ElasticSearch、ES-head、Kibana最新版安装教程

    目录 ElasticSearch的安装 1. 下载es 2. 解压es压缩包 3. 了解es目录 4. 启动es 5. 访问测试 ElasticSearch-head安装 1. 下载es-head 2 ...

  9. 微软批量授权版WINDOWS 10资料(截至到2015年11月,此处无下载地址)

    微软批量授权版WINDOWS 10资料: 1.专业版: Windows 10 专业版(2015 年 7 月发布) WINDOWS 10专业版简体中文,32位/64位 SW_DVD5_Win_Pro_1 ...

最新文章

  1. 实战:基于 CNN 的验证码破解项目(附代码)
  2. Linux服务端最大并发数是多少?
  3. APUE(第七章)进程环境
  4. Python的装饰器
  5. 公司A、公司B、公司C……
  6. 更换checkbox的原有样式
  7. matlab 按一定概率取数组中的值
  8. c语言注释部分两侧的分界符号分别是,c语言中界定注释的符号分别是什么?
  9. linux的usermod命令参数,linux usermod命令参数及用法详解
  10. python图书管理系统增删改查_图书管理系统---增删改查
  11. 17th, Jan 2012 今天的时间表
  12. java在数组中放入随机数_如何在Java中随机播放数组
  13. ubuntu14.04部署kickstart
  14. 先序、中序和后序数组两两结合重构二叉树 -- 图解
  15. Android源码 目录
  16. SASS的安装及简单操作
  17. 这样演示正弦和余弦的相互变换,不怕难懂!
  18. postgres 导入纯文本数据txt
  19. 实战:模拟登录知乎网站(添加cookie)
  20. 面试官:说说你对keep-alive的理解是什么?怎么缓存当前的组件?缓存后怎么更新?

热门文章

  1. 虹膜识别论文5:DeepIrisNet2 2019年 学习心得
  2. android 刷机精灵,Android专用刷机精灵 让你刷机成瘾
  3. Android 新技术
  4. Vue项目报错sockjs.js?9be2:1606 GET http://192.168.43.226:8080/sockjs-node/info?t=1584966826465 net::ERR_
  5. 农村小伙开洗车店,从身无分文,到年挣370万,到底经历了什么?
  6. switchhosts的作用
  7. jsp_asp_php,PHP/JSP/ASP
  8. 黑马就业班(02.JavaWeb+项目实战\04.XML)——XML
  9. python 验证码图片 模拟登录_【python】带图片验证码的登录自动化实战
  10. 万年历Java(从1900年开始)