1.官网下载es
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.6.0.tar.gz
2.解压
tar- zxf elasticsearch-1.6.0.tar.gz
3.修改启动配置文件
cd elasticsearch-1.6.0
vim config/elasticsearch.yml
在最下方添加
cluster.name: byf-cluster
index.number_of_shards: 5
index.number_of_replicas: 1
(注意冒号和属性值之间要有一个空格)
4.后台启动服务
./bin/elasticsearch -d
(不加-d即为前台启动)
(此时已经启动完毕,要停掉服务杀掉对应进程即可)
-------------------es 2以上版本不能直接用root启动服务 若通过yum安装则自动新建elasticsearch用户,若手动安装则需要新建用户并把es目录归其所有
chown es/es
5.测试是否启动成功
curl -X GET localhost:9200
--------------------------------------------------------------------------head管理插件
1.安装
./bin/plugin install mobz/elasticsearch-head
2.访问
http://localhost:9200/_plugin/head/
-------------------------------------------------------------------------------------安装ik分词
2.X版本
git clone https://github.com/medcl/elasticsearch-analysis-ik cd elasticsearch-analysis-ik mvn clean mvn compile mvn package copy & unzip file #{project_path}/elasticsearch-analysis-ik/target/releases/elasticsearch-analysis-ik-*.zip to your elasticsearch's folder: plugins/ik
ref : https://github.com/medcl/elasticsearch-analysis-ik
1.X版本略有不同 且需配置yml项 配了半天也没好 在此不做介绍