centos es 安装

1.jdk的安装配置

首先是要安装jdk的,


2.ElasticSearch的安装配置

这里使用yum方式来安装
ES的官方网站上有说明:
https://www.elastic.co/guide/en/elasticsearch/reference/current/setup.html
首先下载并安装公钥

rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch

配置一下yum源

vim /etc/yum.repos.d/elasticsearch.repo

elasticsearch.repo内容:

[elasticsearch-2.x]
name=Elasticsearch repository for 2.x packages
baseurl=http://packages.elastic.co/elasticsearch/2.x/centos
gpgcheck=1
gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch
enabled=1

然后yum makecache更新一下缓存,

yum install elasticsearch

安装elasticsearch完毕。


之后我们需要将ElasticSearch作为一个服务来运行,具体参考这里
https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-service.html

sudo /sbin/chkconfig --add elasticsearch
sudo service elasticsearch start

至此为止,elasticsearch服务就启动了,访问一下9200端口

curl -X GET localhost:9200

{
"name" : "Hindsight Lad",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "2.0.0",
"build_hash" : "de54438d6af8f9340d50c5c786151783ce7d6be5",
"build_timestamp" : "2015-10-22T08:09:48Z",
"build_snapshot" : false,
"lucene_version" : "5.2.1"
},
"tagline" : "You Know, for Search"
}


3 安装 head 

进入 elasticsearch/bin/

执行 ./plugin install mobz/elasticsearch-head


如果 localhsot:9200 可以访问 ,192.168.x.x:9200 不能访问 解决办法

修改配置文件 config/elasticsearch.yml

更改防火墙

 /etc/init.d/iptables stop

添加 端口 9200

/etc/init.d/iptables restart 



4 ik 中文分词


cd /usr/share/elasticsearch/plugins/                           --也可以在/data目录下

git clone https://github.com/medcl/elasticsearch-analysis-ik   --下载IK Analysis for elasticsearch
cd elasticsearch-analysis-ik

mvn clean                                --maven
mvn compile
mvn package

mkdir /usr/share/elasticsearch/plugins/ik --在plugins目录下面创建ik目录

-- copy & unzip file #{project_path}/elasticsearch-analysis-ik/target/releases/elasticsearch-analysis-ik-*.zip to your elasticsearch's folder: plugins/ik

mv target/releases/elasticsearch-analysis-ik-1.8.0.zip ../ik
unzip elasticsearch-analysis-ik-1.8.0.zip

如果 mvn 不存在 安装

cd /usr/local/src/
wget http://mirrors.hust.edu.cn/apache/maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz
tar zxf apache-maven-3.1.1-bin.tar.gz
mv apache-maven-3.1.1 /usr/local/maven3

vi /etc/profile
vi /etc/profile

#在适当的位置添加
PATH=$PATH:
/usr/local/maven3
/bin
source /etc/profile

mvn -v 查看 版本

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值