1 安装
https://blog.csdn.net/weixin_41229818/article/details/80670788
2 安装成功
cd elasticsearch-6.4.3
后台运行:
nohup ./bin/elasticsearch 或者 ./elasticsearch -d
3 出现问题
由于es的安全策略,不允许从root启动,这里我们需要创建一个用户
https://blog.csdn.net/weixin_41229818/article/details/80670788
ElasticSearch Root身份运行
https://blog.csdn.net/u010317005/article/details/52205825
a 网络
https://blog.csdn.net/u010466329/article/details/78594777
https://www.cnblogs.com/toulanboy/p/8745819.html
还有注意关闭防火墙
b ERROR: bootstrap checks faile 系列问题
https://blog.csdn.net/qq_33363618/article/details/78882827
https://blog.csdn.net/cardinalzbk/article/details/54924511
http://blog.51cto.com/ityunwei2017/2071014
https://blog.csdn.net/jesonjoke/article/details/79718372
c ElasticSearch安装报错整理-threads[4096]
https://blog.csdn.net/clj198606061111/article/details/81139754
d org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: failed to obtain node
https://blog.csdn.net/qq1137623160/article/details/78301060
e elasticsearch-6.2.2安装错误解决方案
https://blog.csdn.net/u010781176/article/details/79489151
f elasticsearch-head-master解压后的内容不能放在elasticsearch的plugins目录下
所以我们删除到plugins目录下的head
https://www.jianshu.com/p/3fe81380682c
4 插件
1 ES学习之路-安装elasticsearch-head插件
https://blog.csdn.net/mjlfto/article/details/79772848
https://www.cnblogs.com/xuwenjin/p/8792919.html
https://blog.csdn.net/s740556472/article/details/78995843
https://blog.csdn.net/qq_36330643/article/details/71600343
2 安装插件 cerebro (head,kopf插件 新版本已不支持)
https://github.com/lmenezes/cerebro
https://blog.csdn.net/fgf00/article/details/79571940
http://blog.51cto.com/linyingyong/2084284
http://www.cnblogs.com/zhanglianghhh/archive/2018/09/08/9608310.html
注意:
安装插件 cerebro 看下面这篇文章,其他的没目录下面没有 bin目录
https://blog.csdn.net/sinat_21302587/article/details/76834560
#修改配置文件,只需要修改host添加当前其中一台elasticsearch地址,然后名字即可
vim ./conf/application.conf
# 启动cerebro
./bin/cerebro &
或者 nohup ./bin/cerebro -Dhttp.port=1234 -Dhttp.address=192.168.10.64 &
或者 ./bin/cerebro -Dhttp.port=9205 -Dhttp.address=10.100.0.104
5 升级方案踩坑记
a ElasticSearch大版本升级踩坑记
https://www.jianshu.com/p/dc6b4e84a673
网友评论