随笔- 310  文章- 1  评论- 0  阅读- 85809 

下载

https://www.elastic.co/cn/downloads/elasticsearch

 

 安装

1
2
3
4
5
6
tar -zxvf elasticsearch-8.5.2-linux-x86_64.tar.gz
cd elasticsearch-8.5.2/bin
 
elasticsearch-8.5.2/config/elasticsearch.yml
network.host: 0.0.0.0 #修改配置文件,使外网可以访问
./elasticsearch -d #进入bin目录下,后台启动ES<br><br>curl localhost:9200 #访问

报错及处理

ERROR: [1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
编辑 /etc/security/limits.conf,追加以下内容;
 
#*               soft    core            0
#*               hard    rss             10000
* soft nofile 65536
* hard nofile 65536
 
此文件修改后需要重新登录用户,才会生效
 
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
 
编辑 /etc/sysctl.conf,追加以下内容:
 
vm.max_map_count=655360
保存后,执行:sysctl -p

  

 

 posted on   boye169  阅读(285)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
历史上的今天:
2021-12-07 typescrip 十进制转换为16进制
2021-12-07 typescrip 数组、Map、对象方法
2021-12-07 typescrip 数组字符串相互转换、字符与ASCII相互转换
2021-12-07 typescrip 忽略检查、函数
点击右上角即可分享
微信分享提示