码迷,mamicode.com
首页 > 其他好文 > 详细

ElasticSearch部署

时间:2019-10-10 20:50:22      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:sea   elastics   map   配置   ons   name   limit   su -   cluster   

内核参数

  1. 最大文件打开数

    vim /etc/security/limits.conf
       midware soft nofile 65536
       midware hard nofile 65536
    su - midware
    ulimit -n
  2. 虚拟映射内存

    sysctl -w vm.max_map_count=262144
    vim /etc/sysctl.conf
       vm.max_map_count=262144
    sysctl vm.max_map_count

配置文件

  1. elasticsearch.yml

    cluster.name: mwops-elasticsearch
       node.name: node1
       path.data: /data/es/data/node1
       path.logs: /data/es/logs/node1
    network.host: 0.0.0.0
    http.port: 9200
    gateway.recover_after_nodes: 1
  2. jvm.options

    -Xms6g
    -Xmx6g

    half of available memory

启动命令

  1. 后台启动

    ./bin/elasticsearch -d

ElasticSearch部署

标签:sea   elastics   map   配置   ons   name   limit   su -   cluster   

原文地址:https://www.cnblogs.com/Peter2014/p/11650033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!