998yty 发表于 2016-10-31 10:22:01

elasticsearch5.0及head插件安装

本文主要介绍elasticsearch5.0安装及head插件安装。确保系统已经安装好jdk1.8.0_73以上,操作系统centos6以上。
一、elasticsearch安装配置1.官网下载源码包https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0.0.tar.gz2.解压安装
1
2
3
4
5
6
useradd elasticsearch
tar xf elasticsearch-5.0.0.tar.gz -C /usr/local
cd /usr/local
ln -sv elasticsearch-5.0.0 elasticsearch
mkdir -pv /data/elasticsearch/{data,logs}
chown -R elasticsearch.elasticsearch /data/elasticsearch




3.修改配置文件

1
2
3
4
5
6
cat /usr/local/elasticsearch/config/elasticsearch.yml
path.data:/data/elasticsearch/data
path.logs:/data/elasticsearch/logs
network.host:192.168.1.12
http.cors.enabled:true
http.cors.allow-origin:"*"




4.修改系统参数

1
2
3
4
5
6
7
8
cat /etc/security/limits.conf
*               soft    nproc         65536
*               hard    nproc         65536
*               soft    nofile          65536
*               hard    nofile          65536
cat /etc/sysctl.conf
vm.max_map_count= 262144
sysctl -p




5.启动服务
su - elasticsearch -c "/usr/local/elasticsearch/bin/elasticsearch &"浏览器访问:http://192.168.1.12:9200/二、head插件的安装在5.0版本中不支持直接安装head插件,需要启动一个服务1.下载插件安装git clone git://github.com/mobz/elasticsearch-head.gitcd elasticsearch-headnpm install在elasticsearch-head目录下node_modules/grunt下如果没有grunt二进制程序,需要执行cd elasticsearch-headnpm install grunt --save2.修改配置修改elasticsearch-head下Gruntfile.js文件,默认监听在127.0.0.1下9200端口3.启动服务/usr/local/elasticsearch-head/node_modules/grunt/bin/gruntserver浏览器访问 http://192.168.1.12:9100/


页: [1]
查看完整版本: elasticsearch5.0及head插件安装