初始Elasticsearch

Posted lwmp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初始Elasticsearch相关的知识,希望对你有一定的参考价值。


安装

es需要Java8 环境,需要首先安装jdk.
安装完java环境,就可以安装es,直接下载压缩包

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.1.zip
unzip elasticsearch-5.5.1.zip -d ${install_dir}

启动

cd ${install_dir}/elasticsearch-5.5.1/ 
./bin/elasticsearch

如果这时候报错 error=‘Cannot allocate memory‘, 是因为elasticsearch5.0默认分配jvm空间大小为2g,需要改小一点

vim config/jvm.options
-Xms512m
-Xmx512m

如果你使用root用户启动,则此时会报错‘org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root‘

adduser ${user_name}
passwd ${user_name}
whereis sudoers
ls -l /etc/sudoers
chmod -v u+w /etc/sudoers
vim /etc/sudoers
${user_name}    ALL=(ALL)       ALL
chmod -v u-w /etc/sudoers
# 添加到root组
usermod -G root ${user_name}
su ${user_name}


以上是关于初始Elasticsearch的主要内容,如果未能解决你的问题,请参考以下文章

Jekyll 偏移代码片段高亮的初始行

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

2.初学者初始Elasticsearch

Elasticsearch笔记九之优化

如何在使用cardview的片段中初始化gridlayoutmanager?

我想在每次选择底部导航项时初始化片段