国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

這篇具有很好參考價值的文章主要介紹了1. Windows 安裝 elasticsearch-8.5.1 和 kibana。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

1. 準(zhǔn)備下載文件

記住es啟動必須要安裝jdk環(huán)境才可以,必須要設(shè)置環(huán)境變量。如果是7.0以后的,es已經(jīng)內(nèi)置了java環(huán)境了。

Elasticsearch 下載地址: https://www.elastic.co/downloads/elasticsearch
Kibana 下載地址: https://www.elastic.co/downloads/kibana

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

2.啟動es

1、配置文件:注意ip用個人ip別用localhost

# ======================== 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:
#
#cluster.name: my-application
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
#node.name: node-1
#
# 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: /path/to/data
#
# Path to log files:
#
#path.logs: /path/to/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 -----------------------------------
#
# By default Elasticsearch is only accessible on localhost. Set a different
# address here to expose this node on the network:
#
network.host: 192.168.1.5
#
# By default Elasticsearch listens for HTTP traffic on the first free port it
# finds starting at 9200. Set a specific HTTP port here:
#
#http.port: 9200
#
# 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.seed_hosts: ["host1", "host2"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
#cluster.initial_master_nodes: ["node-1", "node-2"]
#
# For more information, consult the discovery and cluster formation module documentation.
#
# --------------------------------- Readiness ----------------------------------
#
# Enable an unauthenticated TCP readiness endpoint on localhost
#
#readiness.port: 9399
#
# ---------------------------------- Various -----------------------------------
#
# Allow wildcard deletion of indices:
#
#action.destructive_requires_name: false

#----------------------- BEGIN SECURITY AUTO CONFIGURATION -----------------------
#
# The following settings, TLS certificates, and keys have been automatically      
# generated to configure Elasticsearch security features on 21-11-2022 12:30:06
#
# --------------------------------------------------------------------------------

# Enable security features
xpack.security.enabled: true

xpack.security.enrollment.enabled: true

# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agents
xpack.security.http.ssl:
  enabled: true
  keystore.path: certs/http.p12

# Enable encryption and mutual authentication between cluster nodes
xpack.security.transport.ssl:
  enabled: true
  verification_mode: certificate
  keystore.path: certs/transport.p12
  truststore.path: certs/transport.p12
# Create a new cluster with the current node only
# Additional nodes can still join the cluster later
cluster.initial_master_nodes: ["SK-20211114XKAI"]

# Allow HTTP API connections from anywhere
# Connections are encrypted and require user authentication
http.host: 0.0.0.0

# Allow other nodes to join the cluster from anywhere
# Connections are encrypted and mutually authenticated
#transport.host: 0.0.0.0

#----------------------- END SECURITY AUTO CONFIGURATION -------------------------

2、解壓啟動:\elasticsearch-8.5.1\bin\elasticsearch.bat

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

3、重置登錄密碼

  • 在es的bin目錄,執(zhí)行cmd;
  • 執(zhí)行:elasticsearch-reset-password -u elastic
  • 重啟一下就可以用了

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

注意這里有個小坑:

如果你的bin/elasticsearch.yml 文件里面沒有xpack.security.enabled: true
這個配置,需要加上在重置密碼哦

3、請求看看是否啟動完成

請求地址:https://localhost:9200/
1. Windows 安裝 elasticsearch-8.5.1 和 kibana

3.啟動kibana

1、修改配置文件

進去kibana的config文件夾中的kibana.yml,添加配置

server.port: 5601
server.host: "192.168.1.5"
i18n.locale: "zh-CN"

2、生成秘鑰

\elasticsearch-8.5.1\bin目錄下執(zhí)行(這個秘鑰保存起來有用 ):

elasticsearch-create-enrollment-token -s kibana

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

3、解壓啟動(kibana-8.5.1\bin\kibana.bat)

1. Windows 安裝 elasticsearch-8.5.1 和 kibana

4、請求地址 (配置秘鑰)

http://192.168.1.5:5601/
1. Windows 安裝 elasticsearch-8.5.1 和 kibana
把生成的秘鑰粘貼進去
1. Windows 安裝 elasticsearch-8.5.1 和 kibana

5、登錄成功

剩下的自己玩,真累,各種大坑安裝的時候,終于安裝完成了。
下面是開發(fā)工具頁面
1. Windows 安裝 elasticsearch-8.5.1 和 kibana文章來源地址http://www.zghlxwxcb.cn/news/detail-406347.html

到了這里,關(guān)于1. Windows 安裝 elasticsearch-8.5.1 和 kibana的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • ES(Elasticsearch)和Kibana(Windows)安裝

    ES(Elasticsearch)和Kibana(Windows)安裝

    安裝Elasticsearch過程 首先需要到官網(wǎng)下載安裝包 注意 :要下載對應(yīng)的版本,如果下載最新版而且jdk是1.8版本的話,會出現(xiàn) warning: ignoring JAVA_HOME=C:Program FilesJavajdk1.8.0_191; using bundled JDK 這樣的報錯,意思是jdk版本與es版本不兼容,這里用的是7.6.2 官網(wǎng)地址:https://www.elastic.co

    2024年02月11日
    瀏覽(19)
  • 【elasticsearch+kibana基于windows docker安裝】

    【elasticsearch+kibana基于windows docker安裝】

    改成如下:并在elasticsearch.yml 中添加配置: http.host: 0.0.0.0 出現(xiàn)以上數(shù)據(jù)說明安裝好了es. 注意: es 和 kibana 版本要一致! https://blog.csdn.net/qq_39363204/article/details/108547475

    2024年02月04日
    瀏覽(50)
  • Windows基于Docker安裝Elasticsearch和 kibana筆記

    Windows基于Docker安裝Elasticsearch和 kibana筆記

    1.1、Windows 版 Docker 需要運行在一個安裝了 64 位 Windows 10 操作系統(tǒng)的計算機上,通過啟動一個獨立的引擎來提供 Docker 環(huán)境。 1.2、需要啟用 Windows 操作系統(tǒng)中的 Hyper-V 和容器特性。 1) 右鍵單擊 Windows 開始按鈕并選擇“應(yīng)用和功能”頁面。 2)單擊“程序和功能”鏈接。 3)

    2024年02月15日
    瀏覽(19)
  • Elasticsearch和kibana在Windows上的安裝使用

    Elasticsearch和kibana在Windows上的安裝使用

    提示:文章寫完后,目錄可以自動生成,如何生成可參考右邊的幫助文檔 1、Elasticsearch 是一個分布式、高擴展、高實時的搜索與數(shù)據(jù)分析引擎。它能很方便的使大量數(shù)據(jù)具有搜索、分析和探索的能力。充分利用Elasticsearch的水平伸縮性,能使數(shù)據(jù)在生產(chǎn)環(huán)境變得更有價值。E

    2024年02月03日
    瀏覽(20)
  • 1. Windows 安裝 elasticsearch-8.5.1 和 kibana

    1. Windows 安裝 elasticsearch-8.5.1 和 kibana

    記住es啟動必須要安裝jdk環(huán)境才可以,必須要設(shè)置環(huán)境變量。如果是7.0以后的,es已經(jīng)內(nèi)置了java環(huán)境了。 Elasticsearch 下載地址: https://www.elastic.co/downloads/elasticsearch Kibana 下載地址: https://www.elastic.co/downloads/kibana 在es的bin目錄,執(zhí)行cmd; 執(zhí)行:elasticsearch-reset-password -u elastic 重

    2023年04月09日
    瀏覽(24)
  • windows環(huán)境下ElasticSearch+kibana+ElasticSearch-Head安裝搭建

    windows環(huán)境下ElasticSearch+kibana+ElasticSearch-Head安裝搭建

    windows環(huán)境下ElasticSearch+kibana+ElasticSearch-Head搭建安裝 1.elasticsearch是什么? Elasticsearch(簡稱ES)是一個基于Lucene開源的高擴展的分布式全文搜索引擎。ES不僅僅只是全文搜索,還支持結(jié)構(gòu)化搜索、數(shù)據(jù)分析、復(fù)雜的語言處理、地理位置和對象間關(guān)聯(lián)關(guān)系等。 2.Lucene和ElasticSearch有

    2024年01月21日
    瀏覽(19)
  • 在window環(huán)境下 ,下載安裝Elasticsearch,及其head和kibana

    在window環(huán)境下 ,下載安裝Elasticsearch,及其head和kibana

    1.第一步下載,這里選擇的是7.6.1版本下載。 因為7.17.3之后不支持JDK1.8版本。win7建議下載和我一樣的版本,7.17.3需要win8和最低node.js 12.0.0版本 下載鏈接:Elasticsearch 7.6.1 | Elastic 2.解壓并雙擊bin目錄下的elasticsearch.bat文件。 啟動之前需要配置java的環(huán)境變量,建議1.8版本。 瀏覽

    2023年04月08日
    瀏覽(18)
  • windows下安裝配置 elasticsearch | kibana | analysis-ik

    windows下安裝配置 elasticsearch | kibana | analysis-ik

    elasticsearch是一款非常強大的開源搜索引擎,支持Restful風(fēng)格,可以幫助我們從海量的數(shù)據(jù)中快速找到用戶所需要的內(nèi)容。是當(dāng)前最流的開源企業(yè)級搜索引擎,能夠達(dá)到近實時搜索、穩(wěn)定、可靠、快速、安裝使用方便。 elasticsearch結(jié)合kibana、Logstash、Beats(即elastic stack,簡寫:EL

    2024年02月14日
    瀏覽(27)
  • windows環(huán)境安裝elasticsearch+kibana并完成JAVA客戶端查詢

    windows環(huán)境安裝elasticsearch+kibana并完成JAVA客戶端查詢

    elasticsearch 官網(wǎng)下載比較慢,有時還打不開,可以通過https://elasticsearch.cn/download/下載,先找到對應(yīng)的版本,最好使用迅雷下載,秒下的,我的下載速度可以達(dá)到40M/S 解壓后點擊 elasticsearch-7.10.0binelasticsearch.bat 運行成功后,輸入http://120.0.0.1:9200,可以訪問說明ES啟動成功 點擊

    2024年02月14日
    瀏覽(27)
  • windows環(huán)境下elasticsearch8.1.0+kibana8.1.0安裝教程(用戶密碼版)

    windows環(huán)境下elasticsearch8.1.0+kibana8.1.0安裝教程(用戶密碼版)

    一:JDK環(huán)境(不做介紹) 二:安裝ElasticSearch ①:下載地址: elasticsearch地址: https://www.elastic.co/cn/downloads/elasticsearch kibana地址: https://www.elastic.co/cn/downloads/kibana ②:下載安裝包后解壓 ③:win+r打開cmd(命令提示符),啟動 .binelasticsearch.bat 進入安裝路徑下: 執(zhí)行:.bin

    2023年04月10日
    瀏覽(23)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包