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

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

1. 从下载最新版本的Elasticsearch,目前最新版本为V2.3.3。


2. 解压

1
tar 
zxvf elasticsearch-2.3.2.
tar
.gz

3. 切换到Elasticsearch的bin目录下,启动服务。 

1
2
.
/elasticsearch
Exception 
in 
thread 
"main" 
java.lang.RuntimeException: don't run elasticsearch as root.

启动时会发现Elasticsearch会报如下错误,因为Elasticsearch为安全起见不允许使用root账号启动服务。

4. 创建一个新账号

1
2
3
4
5
6
7
8
[root@Server01 bin]
# useradd elasticsearchuser
[root@Server01 bin]
# passwd elasticsearchuser
Changing password 
for 
user elasticsearchuser.
New password: 
BAD PASSWORD: is too simple
Retype new password: 
passwd
: all authentication tokens updated successfully.
[root@Server01 bin]
# usermod -g root elasticsearchuser

5. 重新启动服务。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[elasticsearchuser@Server01 bin]$ .
/elasticsearch
[2016-05-19 16:44:41,864][WARN ][bootstrap                ] unable to 
install 
syscall filter: seccomp unavailable: requires kernel 3.5+ with CONFIG_SECCOMP and CONFIG_SECCOMP_FILTER compiled 
in
[2016-05-19 16:44:42,190][INFO ][node                     ] [Genis-Vell] version[2.3.2], pid[8878], build[b9e4a6a
/2016-04-21T16
:03:47Z]
[2016-05-19 16:44:42,191][INFO ][node                     ] [Genis-Vell] initializing ...
[2016-05-19 16:44:42,774][INFO ][plugins                  ] [Genis-Vell] modules [lang-groovy, reindex, lang-expression], plugins [], sites []
[2016-05-19 16:44:42,805][INFO ][
env                      
] [Genis-Vell] using [1] data paths, mounts [[/ (
/dev/sda2
)]], net usable_space [486.6gb], net total_space [533.7gb], spins? [possibly], types [ext4]
[2016-05-19 16:44:42,805][INFO ][
env                      
] [Genis-Vell] heap size [990.7mb], compressed ordinary object pointers [
true
]
[2016-05-19 16:44:42,805][WARN ][
env                      
] [Genis-Vell] max 
file 
descriptors [20480] 
for 
elasticsearch process likely too low, consider increasing to at least [65536]
[2016-05-19 16:44:44,758][INFO ][node                     ] [Genis-Vell] initialized
[2016-05-19 16:44:44,758][INFO ][node                     ] [Genis-Vell] starting ...
[2016-05-19 16:44:44,858][INFO ][transport                ] [Genis-Vell] publish_address {127.0.0.1:9300}, bound_addresses {127.0.0.1:9300}, {[::1]:9300}
[2016-05-19 16:44:44,863][INFO ][discovery                ] [Genis-Vell] elasticsearch
/kpitDjQNTwu8Q4D4pbWXnQ
[2016-05-19 16:44:47,910][INFO ][cluster.service          ] [Genis-Vell] new_master {Genis-Vell}{kpitDjQNTwu8Q4D4pbWXnQ}{127.0.0.1}{127.0.0.1:9300}, reason: zen-disco-
join
(elected_as_master, [0] joins received)
[2016-05-19 16:44:47,923][INFO ][http                     ] [Genis-Vell] publish_address {127.0.0.1:9200}, bound_addresses {127.0.0.1:9200}, {[::1]:9200}
[2016-05-19 16:44:47,923][INFO ][node                     ] [Genis-Vell] started
[2016-05-19 16:44:48,020][INFO ][gateway                  ] [Genis-Vell] recovered [0] indices into cluster_state

6. 服务也可以以守护进程方式运行

1
.
/elasticsearch 
-d

还可以在启动时同时指定pid 

1
.
/elasticsearch 
-d -p pid

7. 在浏览器中访问一下,再次确认服务是完好的,但前提是修改/config/elasticsearch.yml,找到 network.host在下面添加一行,然后就可以在浏览器中访问。

1
 
network.host : 10.0.0.5

浏览器显示内容如下:

{  "name" : "Gargouille",  "cluster_name" : "elasticsearch",  "version" : {    "number" : "2.3.2",    "build_hash" : "b9e4a6acad4008027e4038f6abed7f7dba346f94",    "build_timestamp" : "2016-04-21T16:03:47Z",    "build_snapshot" : false,    "lucene_version" : "5.5.0"  },  "tagline" : "You Know, for Search"}

 至此,Elasticsearch安装启动完毕,更详细的操作还待后文。

本文转自 genuinecx 51CTO博客,原文链接:http://blog.51cto.com/favccxx/1792655,如需转载请自行联系原作者
你可能感兴趣的文章
因为我想在博客园长呆,所以给博客园提一些改进建议
查看>>
hdu 1087 Super Jumping! Jumping! Jumping! (DP)
查看>>
struts和struts2的区别
查看>>
JavaScript 自执行函数剖析
查看>>
软工作业--团队作业2
查看>>
Windows Phone 的后台代理不支持的 API
查看>>
as转换的问题
查看>>
【一首小诗】每一个难捱的日子都是一首诗
查看>>
养成良好的习惯-从运动开始
查看>>
鸟妈妈变形记(线程基础)
查看>>
ZOJ 1076 Gene Assembly
查看>>
JS数组push会覆盖前面的数据问题
查看>>
用SQL语句创建触发器
查看>>
Sublime Text 2 注册码
查看>>
用endnote导入bib
查看>>
关于除法运算的比较
查看>>
MySQL 存储过程学习笔记
查看>>
Elasticsearch——QueryBuilder简单查询
查看>>
欧拉回路模板
查看>>
查看软件的安装路径
查看>>