我是靠谱客的博主 踏实煎饼,最近开发中收集的这篇文章主要介绍安装elasticsearch-8.5.2安装elasticsearch-8.5.2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

安装elasticsearch-8.5.2

1. 下载

https://www.elastic.co/cn/downloads/elasticsearch
在这里插入图片描述

2. 安装

(base) [root@node001 bao]# tar -zxvf elasticsearch-8.5.2-linux-x86_64.tar.gz -C /opt/src

3. 修改配置文件

[root@node001 config]# vim /opt/src/elasticsearch-8.5.2/config/elasticsearch.yml
path.data: /opt/src/elasticsearch-8.5.2/data      #数据目录位置
path.logs: /opt/src/elasticsearch-8.5.2/logs      #日志目录位置
network.host: 0,0,0,0                             #允许任何ip来访问
network.publish_host: node001
ingest.geoip.downloader.enabled: false

xpack.security.enabled: false # 安全配置
xpack.security.enrollment.enabled: false # 安全配置
 
xpack.security.http.ssl:
enabled: false
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

http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization,X-Requested-With,Content-Type,Content-Length

[root@node001 config]# vim /opt/src/elasticsearch-8.5.2/config/jvm.options
-Xms512m
-Xmx512m

[root@node001 config]# vim /etc/security/limits.conf
* hard nofile 65536
* soft nofile 65536
[root@node001 config]# vim /etc/sysctl.conf
vm.max_map_count=262144

4.用户授权

adduser es
passwd es
chown -R es:es /opt/src/elasticsearch-8.5.2/
chmod 770 /opt/src/elasticsearch-8.5.2/

5.启动验证

su es
/opt/src/elasticsearch-8.5.2/bin/elasticsearch -d

在这里插入图片描述

最后

以上就是踏实煎饼为你收集整理的安装elasticsearch-8.5.2安装elasticsearch-8.5.2的全部内容,希望文章能够帮你解决安装elasticsearch-8.5.2安装elasticsearch-8.5.2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部