elasticsearch 的端口默认绑定到 127.0.0.1 上,对外开放 http 端口就配置 http.host,对外开放 tcp 端口就配置 network.host

 

 

[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
编辑 /etc/security/limits.conf,追加以下内容;
* 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


 

curl 'localhost:9200/_cat/indices?v'

相关文章:

  • 2021-08-02
  • 2021-09-28
  • 2021-06-05
  • 2021-09-08
  • 2021-08-30
  • 2022-12-23
  • 2021-07-19
  • 2022-12-23
猜你喜欢
  • 2021-04-06
  • 2021-12-04
  • 2021-10-05
  • 2021-06-11
  • 2022-02-28
  • 2022-02-28
相关资源
相似解决方案