博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Elasticsearch 安装
阅读量:5837 次
发布时间:2019-06-18

本文共 1351 字,大约阅读时间需要 4 分钟。

1、下载 最新版的 Elasticsearch (elasticsearch-6.2.0.tar.gz) 到 /usr/local/src 目录下

2、解压缩到当前文件夹    【tar -zxvf elasticsearch-6.2.0.tar.gz】

3、移动到 /usr/local 目录下   【mv elasticsearch-6.2.0 ../】

4、将命令添加到环境变量     【vi /etc/profile】

5、最后添加

export JAVA_HOME=/usr/jdk1.8.0_60

export JRE_HOME=$JAVA_HOME/jre

export ELASTICSEARCH_HOME=/usr/local/elasticsearch-6.2.0

export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$ELASTICSEARCH_HOME/bin:$PATH

6、修改 /usr/local/elasticsearch-6.2.0/config/elasticsearch.yml

cluster.name: my-application

node.name: node-1

network.host: 0.0.0.0

http.port: 9200

node.max_local_storage_nodes: 2

 

可能遇到异常

1、failed to obtain node locks, tried [[/elasticsearch-5.4.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes] (was [1])

 /usr/local/elasticsearch-6.2.0/config/elasticsearch.yml  配置文件最后添加  node.max_local_storage_nodes: 2

 

2、can not run elasticsearch as root

useradd elasticsearch

chown -R elasticsearch:elasticsearch /usr/local/elasticsearch-6.2.0

su elasticsearch

sh /usr/local/elasticsearch-6.2.0/bin/elasticsearch -d

 

3、main ERROR No log4j2 configuration file found. Using default configuration: logging only errors to the console

node.max_local_storage_nodes: 2

请尽量保持冒号前面没空格,后面一个空格,不要用tab键

转载于:https://www.cnblogs.com/tq1226112215/p/8435127.html

你可能感兴趣的文章
POJ1351 Number of Locks(DP:记忆化搜索)
查看>>
vue-router的beforeEach的使用?
查看>>
C程序设计语言 导言
查看>>
ibatis 的使用
查看>>
POJ 3253:Fence Repair
查看>>
03-18 js作业整理
查看>>
java例程练习(数三退一[用数组模拟])
查看>>
无刷新分页前端代码
查看>>
只显示指定网卡IP地址命令
查看>>
VS单元测试的一些常见问题和解决办法
查看>>
wordvec_词的相似度
查看>>
Centos6.5使用yum安装mysql——快速上手必备
查看>>
java常用注解
查看>>
java项目开发第六天——天若有情天亦老,人间正道是沧桑
查看>>
linux安装jdk7
查看>>
PHP-高并发和大流量的解决方案
查看>>
课后作业-阅读任务-阅读提问-3
查看>>
cf-Global Round2-D. Frets On Fire(二分)
查看>>
CI工具和产品资源
查看>>
blend
查看>>