当前位置: 首页 > news >正文

搭建 elasticsearch8.8.2 伪集群 windows

下载windows 版本 elasticsearch8.8.2 

以下链接为es 历史版本下载地址:

Past Releases of Elastic Stack Software | Elastic

windows 单节点建立方案:

下载安装包

elasticsearch-8.8.2-windows-x86_64.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.8.2-windows-x86_64.zip

在工作目录建立single 目录,将文件解压到目录

 

打开elasticsearch8.8.2 /config/

修改:

elasticsearch.yml 文件

xpack.security.enabled: true
xpack.security.enrollment.enabled: true
xpack.security.http.ssl:
  enabled: false
  keystore.path: certs/http.p12
xpack.security.transport.ssl:
  enabled: false
  verification_mode: certificate
  keystore.path: certs/transport.p12
  truststore.path: certs/transport.p12
cluster.initial_master_nodes: ["XTZJ-20220610JT"]
http.host: 0.0.0.0

jvm.options  添加内存设置

-Dfile.encoding=GBK
-Xms4g
-Xmx4g

首次启动时注意:

打开到bin 的上一级目录,“shift” 右键选择 “bin“” 目录

选择“在此处打开命令窗口” 执行

 执行后记住 password,登录和使用

 之后ES重启服务,

访问localhost:9200 

输入用户名: elastic

密码: 刚才我们记录下来的

 

 如果密码失效,可以通过以下方式重置密码

 elasticsearch-reset-password -u elastic

windows伪集群搭建方案:

同上现在文件

 以下为免密码模式

 下载安装包

elasticsearch-8.8.2-windows-x86_64.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.8.2-windows-x86_64.zip

解压到指定cloud 目录:

如: elasticsearch-cloud

解压文件elasticsearch-node1 

修改配置文件: node-1

cluster.name: es-v8.8.2
node.name: node-1
http.port: 9200
network.host: 192.168.9.133
transport.port: 9300
transport.host: 192.168.9.133
path.data: E:/es_space/8.8.2/elasticsearch-8.8.2-cloud/elasticsearch8-9200/data
path.logs: E:/es_space/8.8.2/elasticsearch-8.8.2-cloud/elasticsearch8-9200/logs
bootstrap.memory_lock: true
discovery.seed_hosts: ["192.168.9.133:9300", "192.168.9.133:9301"]
cluster.initial_master_nodes: ["node-1", "node-"]
xpack.security.enabled: false

修改 

jvm.options  添加内存设置

-Dfile.encoding=GBK
-Xms4g
-Xmx4g

修改后copy 一份

改名 

修改配置文件: node-2

cluster.name: es-v8.8.2
node.name: node-2
http.port: 9201
network.host: 192.168.9.133
transport.port: 9301
transport.host: 192.168.9.133
path.data: E:/es_space/8.8.2/elasticsearch-8.8.2-cloud/elasticsearch8-9201/data
path.logs: E:/es_space/8.8.2/elasticsearch-8.8.2-cloud/elasticsearch8-9201/logs
bootstrap.memory_lock: true
discovery.seed_hosts: ["192.168.9.133:9300", "192.168.9.133:9301"]
cluster.initial_master_nodes: ["node-1", "node-2"]
xpack.security.enabled: false

打开我们的bin 执行 elasticsearch.bat

集群搭建方案:

伪集群中ip替换即可

认证添加:

 第一步处理密码之后,copy 成位副本之后可以使用通用秘钥

http://www.lryc.cn/news/113167.html

相关文章:

  • C++ 运算符重载为成员函数
  • 51单片机程序烧录教程
  • Linux C++ 链接数据库并对数据库进行一些简单的操作
  • Linux进程间通信--msgsnd函数的作用
  • P1629 邮递员送信(最短路)(内附封面)
  • 网络安全--原型链污染
  • Harbor企业镜像仓库部署
  • 【AI】《动手学-深度学习-PyTorch版》笔记(十一):分类问题-softmax回归
  • 【排序算法略解】(十种排序的稳定性,时间复杂度以及实现思想)(含代码)(完工于2023.8.3)
  • 学编程实用网站
  • Camunda 7.x 系列【5】 员工请假流程模型
  • 【C++从0到王者】第十七站:手把手教你写一个stack和queue及deque的底层原理
  • ffmpeg.c源码与函数关系分析
  • GD32F103待机模式与唤醒
  • 【Linux初阶】基础IO - 动静态库 | 初识、生成、链接、加载
  • 为Git仓库设置签名信息
  • iOS开发Swift开发UI页面链式调用库推荐
  • ClickHouse SQL与引擎--基本使用(一)
  • 2023-08-07力扣今日七题-好题
  • 支持多用户协同的思维导图TeamMapper
  • 【Vue】Parsing error: No Babel config file detected for ... vue
  • 2023-08-07力扣今日五题
  • ETHERCAT转PROFIBUS连接到300plc的配置方法
  • Spring Boot配置文件与日志文件
  • 可解释性分析的一些类别(草稿)(视觉)
  • HTTPS-RSA握手
  • bigemap国土管理行业应用
  • 深入探索 Splashtop Enterprise 的潜力
  • 创建型模式-单例模式
  • 2. Linux安装Git