温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

简易elasticsearch服务器搭建

发布时间:2020-06-14 05:45:11 来源:网络 阅读:411 作者:栖木之地 栏目:大数据

1:下载和解压:
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.2.tar.gz
2:配置config/elasticsearch.yml
network.host: 10.99.32.16
http.port: 9200
path.logs: /root/elasticsearch/log
path.data: /root/elasticsearch/data
node.name: node-1
cluster.name: mycluster
discovery.zen.ping.unicast.hosts: ["10.99.32.16", "10.99.32.17", "10.99.32.18"]
discovery.zen.minimum_master_nodes: 2
bootstrap.memory_lock: true
3:配置config/jvm.options
4:配置一些系统内核参数:

can not run elasticsearch as root:
不能使用root用户进行操作,需要创建一个用户,并把原来的目录的拥有者更改为该用户
adduser myuser
passwd myuser
chown -R myuser /mypath

max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
修改/etc/security/limits.conf
添加:elastic hard nofile 65536

max file size [67107840] for user [elastic] is too low, increase to [unlimited]
修改/etc/security/limits.conf
elastic soft fsize unlimited

max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
解决:sysctl -w vm.max_map_count=262144

5:运行:
bin/elasticsearch
后台运行:bin/elasticsearch -d -p pidFile
会生成一个pidFile文件,记录pid
随系统启动:
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable elasticsearch.service

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI