标签:tmp str 环境 signed div arch roo http 插件
一、安装java环境,这么不说了,一般用源码安装,配置好环境变量
二、新建es用户和组,es不能用root启动
三、下载需要的稳定版es
四、解压安装es
unzip elasticsearch-5.5.2.zip mv elasticsearch-5.5.2 /opt/app/ ln -s elasticsearch-5.5.2 es chown -R es:es /opt/app/elasticsearch-5.5.2/
五、修改es配置文件
vim /opt/app/elasticsearch-5.5.2/config/elasticsearch.yml cluster.name: es_znj node.name: es_163 path.data: /data/es/ path.logs: /data/logs/es/ network.host: *.*.*.* http.port: 9200 http.cors.enabled: true http.cors.allow-origin: "*"
vim /opt/app/elasticsearch-5.5.2/config/jvm.options
-Xms2g
-Xmx2g
六、修改系统参数
vim /etc/security/limits.conf * soft nofile 65536 * hard nofile 131072 vim /etc/sysctl.conf vm.max_map_count=262144
systemctl -p
七、创建目录
mkdir /data/es/ mkdir /data/logs/es/
八、使用systemd管理进程
vim /etc/systemd/system/es.service [Unit] Description=elasticsearch5 [Service] Type=simple User=es Group=es EnvironmentFile=-/etc/default/es ExecStart=/opt/app/es/bin/elasticsearch -Epath.conf=/opt/app/es/config ExecStop=/bin/kill -s QUIT $MAINPID PrivateTmp=false Restart=always LimitNOFILE=655350 [Install] WantedBy=multi-user.target
九、安装ik插件
ik插件到这里下载对应es版本的,然后解压复制到es的插件目录:
unzip elasticsearch-analysis-ik-5.5.2.zip mv elasticsearch /opt/src/ mv elasticsearch analysis-ik
十、安装head插件
1.下载head插件,下载地址
mv elasticsearch-head /opt/app/ ln -s elasticsearch-head es-head
2.修改配置
标签:tmp str 环境 signed div arch roo http 插件
原文地址:http://www.cnblogs.com/mikeluwen/p/7691468.html