linux安装elasticsearch5.5

大家好,我是烤鸭:

我是采用官网下载tar包的方式安装的。

安装环境:centos 7.2,jdk1.8

下载地址:
https://www.elastic.co/downloads/elasticsearch
1.解压缩:
解压 elasticsearch.5.5.2.tar.gz

tar -zxvf  elasticsearch-5.2.2.tar.gz

2.创建用户:
因为Elasticsearch5.0之后,不能使用root账户启动,我们先创建一个elasticsearch组和账户

useradd  elasticsearch -g elasticsearch -p elasticsearch
chown -R elasticsearch:elasticsearch elasticsearch-5.2.2

3.修改配置文件:
贴一下我的elasticsearch.yml配置文件::

# ---------------------------------- Cluster -----------------------------------
#
# Use a descriptive name for your cluster:
#	集群名称
cluster.name: my-application
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#	节点名称
node.name: node-1
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#
# ----------------------------------- Paths ------------------------------------
#
# Path to directory where to store the data (separate multiple locations by comma):
#数据路径(我是在elasticsearch的安装目录下新建了data文件夹)
path.data: /usr/my/elasticsearch/elasticsearch-5.5.2/data
# Path to log files:
#日志路径(我是在elasticsearch的安装目录下新建了logs文件夹)
path.logs: /usr/my/elasticsearch/elasticsearch-5.5.2/logs
#
# ----------------------------------- Memory -----------------------------------
#
# Lock the memory on startup:
#
# 当JVM开始写入交换空间时(swapping)ElasticSearch性能会低下,你应该保证它不会写入交换空间 
# 设置这个属性为true来锁定内存,同时也要允许elasticsearch的进程可以锁住内存,linux下可以通过 `ulimit -l unlimited` 命令 
bootstrap.memory_lock: false
#
# Make sure that the heap size is set to about half the memory available
# on the system and that the owner of the process is allowed to use this
# limit.
#
# Elasticsearch performs poorly when the system is swapping the memory.
#
# ---------------------------------- Network -----------------------------------
#
# Set the bind address to a specific IP (IPv4 or IPv6):
#设置绑定的ip地址,可以是ipv4或ipv6的,默认为0.0.0.0 
network.host: 0.0.0.0
#
# Set a custom port for HTTP:
# 设置对外服务的http端口,默认为9200 
http.port: 9200
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when new node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#这是一个集群中的主节点的初始列表,当节点(主节点或者数据节点)启动时使用这个列表进行探测 ["192.168.0.1(服务器ip):9300"]
#
# Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):
# 设置这个参数来保证集群中的节点可以知道其它N个有master资格的节点.默认为1,对于大的集群来说,可以设置大一点的值(2-4) 
discovery.zen.minimum_master_nodes: 1
#
# For more information, consult the zen discovery module documentation.
#
# ---------------------------------- Gateway -----------------------------------
#
# Block initial recovery after a full cluster restart until N nodes are started:
#
#gateway.recover_after_nodes: 3
#
# For more information, consult the gateway module documentation.
#
# ---------------------------------- Various -----------------------------------
#
# Require explicit names when deleting indices:
#
#action.destructive_requires_name: true
#开启跨域访问支持,默认为false
http.cors.enabled: true
#跨域访问允许的域名地址,以上使用正则,(域名这里我替换了IP /http?:\/\/192.168.10.139(:[0-9]+)?/)
http.cors.allow-origin: "*"
4.启动
可以前台启动或者后台启动,进入elasticsearch目录
前台启动:

./bin/elasticsearch
后台启动:(个人喜欢后台启动,启动失败可以logs下查看日志方便)

./bin/elasticsearch -d
按照以上配置,我的是可以正常启动的。

另外说一下,防火墙,阿里云是有安全组配置的,如果不在安全组开放端口的话,服务器关闭防火墙也是没用的。
贴一下centos 7.2,7.3关闭防火墙的命令:
关闭防火墙:

systemctl stop firewalld.service

关闭防火墙开机自启动功能:

systemctl disable firewalld.service

出现以下命令,就启动成功了:

[2017-09-20T10:36:10,400][INFO ][o.e.e.NodeEnvironment    ] [node-1] using [1] data paths, mounts [[/ (rootfs)]], net usable_space [29.9gb], net total_space [39.2gb], spins? [unknown], types [rootfs]
[2017-09-20T10:36:10,401][INFO ][o.e.e.NodeEnvironment    ] [node-1] heap size [495.3mb], compressed ordinary object pointers [true]
[2017-09-20T10:36:10,401][INFO ][o.e.n.Node               ] [node-1] node name [node-1], node ID [uoi6ZmIbSNGu6xaol_OCpw]
[2017-09-20T10:36:10,402][INFO ][o.e.n.Node               ] [node-1] version[5.5.2], pid[9979], build[b2f0c09/2017-08-14T12:33:14.154Z], OS[Linux/3.10.0-514.26.2.el7.x86_64/amd64], JVM[Oracle Corporation/Java HotSpot(TM) 64-Bit Server VM/1.8.0_144/25.144-b01]
[2017-09-20T10:36:10,402][INFO ][o.e.n.Node               ] [node-1] JVM arguments [-Xms512m, -Xmx512m, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.path.home=/usr/my/elasticsearch/elasticsearch-5.5.2]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [aggs-matrix-stats]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [ingest-common]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-expression]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-groovy]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-mustache]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-painless]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [parent-join]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [percolator]
[2017-09-20T10:36:11,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [reindex]
[2017-09-20T10:36:11,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [transport-netty3]
[2017-09-20T10:36:11,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [transport-netty4]
[2017-09-20T10:36:11,175][INFO ][o.e.p.PluginsService     ] [node-1] no plugins loaded
[2017-09-20T10:36:12,770][INFO ][o.e.d.DiscoveryModule    ] [node-1] using discovery type [zen]
[2017-09-20T10:36:13,234][INFO ][o.e.n.Node               ] [node-1] initialized
[2017-09-20T10:36:13,235][INFO ][o.e.n.Node               ] [node-1] starting ...
[2017-09-20T10:36:13,389][INFO ][o.e.t.TransportService   ] [node-1] publish_address {172.17.214.191:9300}, bound_addresses {0.0.0.0:9300}
[2017-09-20T10:36:13,398][INFO ][o.e.b.BootstrapChecks    ] [node-1] bound or publishing to a non-loopback or non-link-local address, enforcing bootstrap checks
[2017-09-20T10:36:16,446][INFO ][o.e.c.s.ClusterService   ] [node-1] new_master {node-1}{uoi6ZmIbSNGu6xaol_OCpw}{kGPZi3xEREuq_Nb-s5yEKQ}{172.17.214.191}{172.17.214.191:9300}, reason: zen-disco-elected-as-master ([0] nodes joined)
[2017-09-20T10:36:16,469][INFO ][o.e.g.GatewayService     ] [node-1] recovered [0] indices into cluster_state
[2017-09-20T10:36:16,469][INFO ][o.e.h.n.Netty4HttpServerTransport] [node-1] publish_address {172.17.214.191:9200}, bound_addresses {0.0.0.0:9200}
[2017-09-20T10:36:16,469][INFO ][o.e.n.Node               ] [node-1] started

访问成功:


关于之前遇到的坑,也记录一下:


1、Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x0000000085330000, 2060255232, 0) failed; error='Cannot allocate memory' (errno=12)


修改elasticsearch目录中config/jvm.options
vim config/jvm.options
将原来的:

-Xms2g  
-Xmx2g 
修改为:
-Xms512m
-Xmx512m
2、max number of threads [1024] for user [elasticsearch] is too low, increase to at least [2048]
修改 /etc/security/limits.d/90-nproc.conf 
*          soft    nproc     1024
*          soft    nproc     2048
3、max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
修改/etc/sysctl.conf配置文件,

cat /etc/sysctl.conf | grep vm.max_map_count
vm.max_map_count=262144
如果不存在则添加

echo "vm.max_map_count=262144" >>/etc/sysctl.conf
4.uncaught exception in thread [main]

org.elasticsearch.bootstrap.StartupException: BindTransportException[Failed to bind to [9300-9400]]; nested: BindException[Cannot assign requested address];


修改elasticsearch下的config/elasticsearch.yml
这里的network.host原本写的是服务器ip地址,
改成

network.host: 0.0.0.0
也有的说是,之前生成的结点数据没有清除,
找到配置文件中的配置的结点目录(path.data: /usr/my/elasticsearch/elasticsearch-5.5.2/dat)

清空原来的内容


5.[1] bootstrap checks failed
[1]: memory locking requested for elasticsearch process but memory is not locked
修改elasticsearch下的config/elasticsearch.yml
修改bootstrap.memory_lock:true

bootstrap.memory_lock: false



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/413061.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux部署jenkins,tomcat9

大家好,我是烤鸭:今天分享的是 linux部署jenkins,tomcat9 安装环境:linux centos7.2tomcat 9.1Jenkins 2.73JDK 1.8maven 3.5git 2.91. 下载jenkins:https://jenkins.io/download/ 我选择的war下载。2. 安装…

jeesite的junit,数据没有插入?

jeesite框架自带的test方法 在common/test/SpringTransactionalContextTests.class 说一下遇到的问题。 sql执行成功了,但是数据库没有数据。what??? 第一时间就想到了是事务的问题,事务没有提交。 RunWith(SpringJUnit4Class…

JAVA实现美团电影价格抓取(附代码)

各位老大好,我是烤鸭: 最近在研究爬虫,看到有意思的是美团的电影票价,普通的抓取是抓不到的。例如网址:http://bj.meituan.com/shop/105355906?mtt1.movie/cinemalist.0.0.j8oaf2un(当你打开403或者404的话&#xff0…

使用jieba和wordcloud进行中文分词并生成《悲伤逆流成河》词云

因为词云有利于体现文本信息,所以我就将那天无聊时爬取的《悲伤逆流成河》的评论处理了一下,生成了词云。 关于爬取影评的爬虫大概长这个样子(实际上是没有爬完的): #!/usr/bin/env python # -*- coding: utf-8 -*- # Time : 2018/10/15 16:34 # Auth…

jqweui的picker动态加载数据

大家好&#xff0c;我是烤鸭&#xff1a; jqweui的picker动态加载数据 jqweui是jquery对weui的拓展开发,picker就是其中的一个拓展组件&#xff0c; 1. 先附上官网显示地址和代码&#xff1a; http://jqweui.com/extends#picker <input type"text" idpicker/&g…

vue省市区三级联动mysql,js/json,html/jsp

大家好&#xff0c;我是烤鸭&#xff1a; 省市区三级联动数据及页面&#xff1a; 测试的时候&#xff0c;发现少了几个地区&#xff0c;现在补上了&#xff0c;也优化了下排版。 如果你懒得复制和看的话&#xff0c;这里是打包的下载地址。 之前的资源地址也改了&#xff0…

UI自动化之读取浏览器配置

以火狐浏览器为例 目录 1、找到配置项 2、读取配置 1、找到配置项 打开Firefox点右上角设置>&#xff1f;&#xff08;帮助&#xff09;>故障排除信息>显示文件夹&#xff0c;复制文件管理器地址栏 2、读取配置 用FirefoxProfile() 方法读取配置&#xff0c;然后再加载…

通过cmd命令,杀掉占用端口号的进程

错误问题&#xff1a;【Error running public: Unable to open debugger port (127.0.0.1:53110): java.net.BindException "Address already in use: JVM_Bind"】 解决步骤&#xff1a; 1&#xff09;netstat -aon|findstr 53110 此处的53110 根据自己错误中提示的…

解决使用adb卸载应用失败的问题

昨天使用adb命令成功安装了应用&#xff0c;但是在卸载时却报错&#xff0c;卸载失败&#xff0c;如下图&#xff1a; 然后我找了找原因&#xff0c;觉得可能是包名以及路径的原因&#xff0c; 于是就先把手机上的应用都打印出来看下&#xff0c; 列出手机装的所有app的包名&am…

linux安装docker部署java项目

大家好&#xff0c;我是烤鸭&#xff1a; 分享一下linux上部署docker的javaweb项目 1.环境 linux centos 7.2 64-bit 系统 kernel 3.10 查看版本号 &#xff1a; uname -r 大于3.10即可 2.安装docker 这里是官网安装教程 https://docs.docker.com/engine/installation/…

Java面试题谷歌插件

该插件可以让您在做WEB开发的同时&#xff0c;也可以去学习一些理论知识&#xff0c;加深你的技术。 随机题&#xff1a;每次点开插件&#xff0c;从题库中随机筛选出的题 当前题&#xff1a;是桌面通知的题目&#xff0c;每三分钟随机发送一次桌面通知 追加题&#xff1a;向…

Apache Curator之分布式锁原理(二)

本文主要讲解如下内容&#xff1a; 为什么要使用分布式锁&#xff1f;分布式锁特性&#xff01;分布式锁的实现方式有哪些&#xff1f;Curator分布式锁原理Curator分布式锁实现类UML及相关类的介绍基于Redis&#xff0c;数据库实现分布式锁为什么要使用分布式锁&#xff1f; 在…

阿里云服务器发送邮件失败?连接超时?25端口被封?

大家好&#xff0c;我是烤鸭&#xff1a; 之前用阿里云服务器的时候发送126企业邮箱&#xff0c;用的smtp方式&#xff0c;但是一直超时。百思不得其解。因为在本地环境是可以的。 原来是阿里云服务器限制了25端口。问了126邮箱那边的技术客服&#xff0c;只支持25端口。 问了…

springboot版的微信公众号,订阅号

大家好&#xff0c;我是烤鸭&#xff1a; 这是一篇微信公众号入门的文章&#xff0c;如果是个人的话&#xff0c;只能申请未认证的订阅号。如果是公司的话&#xff0c;想申请啥都是可以的。 这篇文章说的就是个人订阅号。 环境: centos 7.3 springboot 1.5 需要&#xff…

Javascript报错Failed to execute ‘querySelectorAll‘ on ‘Document‘: ‘#123456‘ is not a valid sele

Javascript报错&#xff1a;Failed to execute ‘querySelectorAll’ on ‘Document’: ‘#123456’ is not a valid selector 解决方式(除开特殊符号,第一个字符必须是字母)&#xff1a; 第一种&#xff1a; 将ID前面加字母&#xff0c;例如&#xff1a;document.querySelect…

pycharm创建django项目linux部署

大家好&#xff0c;我是烤鸭&#xff1a; pytho部署web项目比java简单一点&#xff0c;虽然springboot内置了tomcat。 环境&#xff1a; pycharm专业版python3.6 1.安装python python下载&#xff1a;https://www.python.org/downloads/ 我使用的3.6版本 2.配置环境变量 path目…

利用Android Studio快速搭建App

大家好&#xff0c;我是烤鸭: 给大家分享一个简单的用Android Studio快速搭建app 工具&#xff1a;Android Studio 64位 专业版 插件:Datepicker Timepicker okhttp 实现需求&#xff1a;界面上选择时间&#xff0c;发get/post请求到后台&#xff0c;获取选择的时间。1.修改And…

springboot多环境加载yml和logback配置

大家好&#xff0c;我是烤鸭&#xff1a;这是一篇关于springboot多环境加载yml和logback配置文件。环境&#xff1a;开发工具 idea(推荐)/eclipse(对yml支持不好)jdk 1.8springboot 1.5.6.RELEASE 1. yml和logback文件1.1 结构,如图所示&#xff1a;1.2 application.yml (默…

汇编实验二

》实验结论 1.使用Debug将下面的程序写入内存&#xff0c;逐条执行&#xff08;见1-1&#xff09;&#xff0c;根据指令执行后的实际情况填空&#xff08;见1-2&#xff09; p.s. 已经按实验要求将使用 e 命令将内存单元 0021:0 ~0021:7 连续 8 个字节数据修改为 30H, 31H, 32H…

springboot中的拦截器interceptor和过滤器filter,多次获取request参数

大家好&#xff0c;我是烤鸭&#xff1a; 这是一篇关于springboot的拦截器(interceptor)和过滤器(Filter)。 先说一下过滤器和拦截器。区别&#xff1a;1. servlet请求&#xff0c;顺序&#xff1a;Filter ——> interceptor。2. Filter的作用是对所有进行过滤&#xff…