Elastic Search
程序员文章站
2022-07-05 07:58:40
...
Elastic Search 安装问题
- max file descriptors [4096] for elasticsearch process likely too low, increase to at least [65536]
vi /etc/security/limits.conf
// 添加如下内容:
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
- max number of threads [1024] for user [lish] likely too low, increase to at least [2048]
vi /etc/security/limits.d/90-nproc.conf
// 添加如下内容:
* soft nproc 2048
- max virtual memory areas vm.max_map_count [65530] likely too low, increase to at least [262144]
vi /etc/sysctl.conf
// 添加下面配置:
vm.max_map_count=655360
并执行命令:
sysctl -p
- the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
vi ./config/elasticsearch.yml
// 放开注释
cluster.initial_master_nodes: ["node-1"]
上一篇: spring事务使用
下一篇: CentOS7 yum命令错误
推荐阅读
-
postgresql中的Search_path和schema的概念
-
php数组查找函数in_array()、array_search()、array_key_exists()使用实例
-
Create Your Own Search Engine with Python (一)
-
基于Cloudera Search设计数据灾备方案
-
php array_search() 函数使用
-
荐 Java刷题笔记15:不同的二叉搜索树( Unique Binary Search Trees)
-
python正则表达式match和search用法实例
-
Elastic Stack 开源的大数据解决方案
-
python 使用re.search()筛选后 选取部分结果的方法
-
使用 Python 中 re 模块对测试用例参数化,进行搜索 search、替换 sub