概述
#elasticsearch安装流程
# by coco
# 2016-11-09
1. 下载:官网地址:
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0.0.tar.gz
https://www.elastic.co/guide/en/elasticsearch/reference/5.0/mapping-all-field.html //官方wiki文档
1.去官网下载jdk:
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
tar -xvf elasticsearch-5.0.0.tar.gz
cd elasticsearch-5.0.0
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
mkdir -p /usr/local/elasticsearch/plugins
mkdir -p /usr/local/elasticsearch/config/scripts
注意:在安装过程中,不建这2个文件夹,启动时会报错,找不到这两个路径。
|
1
2
3
4
5
6
|
cat
/usr/local/elasticsearch/config/elasticsearch
.yml
# 换个集群的名字,免得跟别人的集群混在一起
cluster.name: wlt-es5.0-application
# 换个节点名字
node.name: node-1
path.data:
/data/elasticsearch/data
path.logs:
/data/elasticsearch/logs
# 修改一下ES的监听地址,这样别的机器也可以访问
network.host: 0.0.0.0
# 默认的就好
http.port: 9200 #http.cors.enabled:
true
#http.cors.allow-origin:
“*"
注意,设置参数的时候:后面要有空格!
|
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
|
修改head源码
由于head的代码还是2.6版本的,直接执行有很多限制,比如无法跨机器访问。因此需要用户修改两个地方:
目录:head/Gruntfile.js:
connect: { server: { options: { port: 9100, hostname: '*', base: '.', keepalive: true } } }
增加hostname属性,设置为*
修改连接地址:
目录:head/_site/app.js
修改head的连接地址:
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";
把localhost修改成你es的服务器地址,如:
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://192.168.8.98:9200";
错误一:
ERROR: bootstrap checks failed
max file descriptors [65535] for elasticsearch process likely too low, increase to at least [65536]
解决办法:
cat /proc/sys/fs/file-max
? If it's too low, execute
sysctl -w fs.file-max=65536
最后
以上就是超帅月亮为你收集整理的elasticsearch5.0 安装流程的全部内容,希望文章能够帮你解决elasticsearch5.0 安装流程所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复