elasticsearch 常見問題

安裝

https://www.linuxprobe.com/elasticsearch-install-tutorial.html

 

  • 外網訪問

解決辦法:vim config/elasticsearch.yml
增加:network.host: 0.0.0.0

 

  • max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]

修改/etc/security/limits.conf

* soft nofile 65536
* hard nofile 65536

 

  • max number of threads [3818] for user [es] is too low, increase to at least [4096]

* soft nproc 4096
* hard nproc 4096

查看是否生效
ulimit -Hn
ulimit -Sn
ulimit -Hu
ulimit -Su

 

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

vi /etc/sysctl.conf
vm.max_map_count=262144

執行生效
sysctl -p

 

  • elasticsearch用戶沒有該文件夾的權限

chown -R 用戶 路徑

 

參考:
https://www.cnblogs.com/zhi-leaf/p/8484337.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章