1、官网下载需要版本的ES,地址:https://www.elastic.co/downloads/elasticsearch
2、上传到Linux服务器,解压 tar -zxvf xxxxx
3、进入ES目录,bin/elasticsearch启动ES
4、遇到的问题:
1. JVM虚拟机内存不足
- 错误:“JavaHotSpot™ 64-Bit Server VM warning: INFO: error=‘Cannotallocate memory’ (errno=12)”表示内存不足,其配置文件为config目录下的jvm.options,默认为2g,可以修改为1g。
2. max_map_count过小
- max virtual memory areas vm.max_map_count [65530]is too low, increase to at least [262144]
- 解决方法是修改/etc/sysctl.conf配置文件,添加vm.max_map_count=262144,记得需要重启机器才起作用
3. max file descriptors过小
- max file descriptors [65535] for elasticsearchprocess is too low, increase to at least [65536]
- 解决方法是修改/etc/security/limits.conf文件,添加“* - nofile65536 * - memlock unlimited”,“*”表示给所有用户起作用,修改后的配置如下图所示:
4. 公网IP:9200访问不了
- 修改elasticsearch.yml修改network.host为0.0.0.0
5、启动成功后访问IP:9200返回结果
6、注意事项:
- 管理员Root用户不能启动ES, 新创建用户
- useradd xxx
- passwd xxx
- su xxx
- chown xxx 777 /es目录