ElasticSearch安装

ElasticSearch安装

版本配套表

安装包版本:

Elasticsearch 7.17.11

部署方式

  • Elasticsearch部署在远程Ubantu虚拟机192.168.1.19

安装过程

  • 将压缩包上传到服务器的目标目录
  • 将压缩包解压
tar -xvf elasticsearch-7.17.11-linux-x86_64.tar.gz
  • 进入解压后的Elasticsearch目录
  • 执行命令后台进程启动Elasticsearch
./bin/elasticsearch -d

验证

访问服务器9200端口,可查看如下信息

image-20241118140509610

FAQ:

1.ES启动未报错,但是访问不了

由于ES为远端部署,在本地cmd窗口使用telnet命令检查远端服务器9200端口连接不上

修改config/elasticsearch.yml文件,将ES绑定到服务器IP

image-20241118135740050

2.ES报错:You must address the points described in the following [2] lines before starting Elasticsearch.

image-20241118135822547

修改config/elasticsearch.yml文件

image-20241118135925835

3.max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

image-20241118140058332

  • 打开sysctl.conf文件
sudo /etc/sysctl.conf
  • 最后一行增加配置并报错
vm.max_map_count=262144
  • 使配置生效
sudo sysctl -p

image-20241118140350805

posted @ 2024-11-20 11:52  litayun  阅读(4)  评论(0编辑  收藏  举报