安装elasticsearch-7.0.0及插件
下载安装包:(下载地址:https://www.elastic.co/cn/downloads/elasticsearch)
elasticsearch-7.0.0-linux-x86_64.tar.gz
解压之后执行
[context@upright92 elasticsearch-7.0.0]$ ./bin/elasticsearch
占用的默认端口是9200 。可以自己查看
[root@upright92 context]# netstat -anp | grep 9200
tcp6 0 0 127.0.0.1:9200 :::* LISTEN 19471/java
tcp6 0 0 ::1:9200 :::* LISTEN 19471/java
安装插件
寻找与之对应的插件版本进行安装
[context@upright92 elasticsearch-7.0.0]$ ./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.0.0/elasticsearch-analysis-ik-7.0.0.zip
-> Downloading https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.0.0/elasticsearch-analysis-ik-7.0.0.zip
[=================================================] 100%
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: plugin requires additional permissions @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
* java.net.SocketPermission * connect,resolve
See http://docs.oracle.com/javase/8/docs/technotes/guides/security/permissions.html
for descriptions of what these permissions allow and the associated risks.
Continue with installation? [y/N]y
-> Installed analysis-ik
重新启动
[context@upright92 elasticsearch-7.0.0]$ ./bin/elasticsearch
[2019-04-22T15:19:50,583][INFO ][o.e.e.NodeEnvironment ] [upright92] using [1] data paths, mounts [[/home (/dev/mapper/cl-home)]], net usable_space [1.5tb], net total_space [1.6tb], types [xfs]
[2019-04-22T15:19:50,591][INFO ][o.e.e.NodeEnvironment ] [upright92] heap size [989.8mb], compressed ordinary object pointers [true]
[2019-04-22T15:19:50,597][INFO ][o.e.n.Node ] [upright92] node name [upright92], node ID [ye8JEZFJQTKyuhUpmhA-BA]
[2019-04-22T15:19:50,599][INFO ][o.e.n.Node ] [upright92] version[7.0.0], pid[19471], build[default/tar/b7e28a7/2019-04-05T22:55:32.697037Z], OS[Linux/3.10.0-862.14.4.el7.x86_64/amd64], JVM[Oracle Corporation/Java HotSpot(TM) 64-Bit Server VM/1.8.0_211/25.211-b12]
[2019-04-22T15:19:50,601][INFO ][o.e.n.Node ] [upright92] JVM home [/usr/java/jdk1.8.0_211/jre]
[2019-04-22T15:19:50,603][INFO ][o.e.n.Node ] [upright92] JVM arguments [-Xms1g, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.io.tmpdir=/tmp/elasticsearch-3101632940442448963, -XX:+HeapDumpOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -XX:+PrintTenuringDistribution, -XX:+PrintGCApplicationStoppedTime, -Xloggc:logs/gc.log, -XX:+UseGCLogFileRotation, -XX:NumberOfGCLogFiles=32, -XX:GCLogFileSize=64m, -Dio.netty.allocator.type=unpooled, -Des.path.home=/home/context/elasticsearch-7.0.0, -Des.path.conf=/home/context/elasticsearch-7.0.0/config, -Des.distribution.flavor=default, -Des.distribution.type=tar, -Des.bundled_jdk=true]
[2019-04-22T15:19:54,689][INFO ][o.e.p.PluginsService ] [upright92] loaded module [aggs-matrix-stats]
[2019-04-22T15:19:54,689][INFO ][o.e.p.PluginsService ] [upright92] loaded module [analysis-common]
[2019-04-22T15:19:54,690][INFO ][o.e.p.PluginsService ] [upright92] loaded module [ingest-common]
[2019-04-22T15:19:54,690][INFO ][o.e.p.PluginsService ] [upright92] loaded module [ingest-geoip]
[2019-04-22T15:19:54,690][INFO ][o.e.p.PluginsService ] [upright92] loaded module [ingest-user-agent]
[2019-04-22T15:19:54,691][INFO ][o.e.p.PluginsService ] [upright92] loaded module [lang-expression]
[2019-04-22T15:19:54,691][INFO ][o.e.p.PluginsService ] [upright92] loaded module [lang-mustache]
[2019-04-22T15:19:54,691][INFO ][o.e.p.PluginsService ] [upright92] loaded module [lang-painless]
[2019-04-22T15:19:54,692][INFO ][o.e.p.PluginsService ] [upright92] loaded module [mapper-extras]
[2019-04-22T15:19:54,692][INFO ][o.e.p.PluginsService ] [upright92] loaded module [parent-join]
[2019-04-22T15:19:54,692][INFO ][o.e.p.PluginsService ] [upright92] loaded module [percolator]
[2019-04-22T15:19:54,693][INFO ][o.e.p.PluginsService ] [upright92] loaded module [rank-eval]
[2019-04-22T15:19:54,693][INFO ][o.e.p.PluginsService ] [upright92] loaded module [reindex]
[2019-04-22T15:19:54,693][INFO ][o.e.p.PluginsService ] [upright92] loaded module [repository-url]
[2019-04-22T15:19:54,693][INFO ][o.e.p.PluginsService ] [upright92] loaded module [transport-netty4]
[2019-04-22T15:19:54,694][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-ccr]
[2019-04-22T15:19:54,695][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-core]
[2019-04-22T15:19:54,695][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-deprecation]
[2019-04-22T15:19:54,696][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-graph]
[2019-04-22T15:19:54,696][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-ilm]
[2019-04-22T15:19:54,696][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-logstash]
[2019-04-22T15:19:54,697][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-ml]
[2019-04-22T15:19:54,697][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-monitoring]
[2019-04-22T15:19:54,697][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-rollup]
[2019-04-22T15:19:54,698][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-security]
[2019-04-22T15:19:54,698][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-sql]
[2019-04-22T15:19:54,698][INFO ][o.e.p.PluginsService ] [upright92] loaded module [x-pack-watcher]
[2019-04-22T15:19:54,699][INFO ][o.e.p.PluginsService ] [upright92] loaded plugin [analysis-ik]
[2019-04-22T15:20:03,820][INFO ][o.e.x.s.a.s.FileRolesStore] [upright92] parsed [0] roles from file [/home/context/elasticsearch-7.0.0/config/roles.yml]
[2019-04-22T15:20:05,329][INFO ][o.e.x.m.p.l.CppLogMessageHandler] [upright92] [controller/19604] [Main.cc@109] controller (64 bit): Version 7.0.0 (Build cdaa022645f38d) Copyright (c) 2019 Elasticsearch BV
[2019-04-22T15:20:06,410][DEBUG][o.e.a.ActionModule ] [upright92] Using REST wrapper from plugin org.elasticsearch.xpack.security.Security
[2019-04-22T15:20:07,115][INFO ][o.e.d.DiscoveryModule ] [upright92] using discovery type [zen] and seed hosts providers [settings]
[2019-04-22T15:20:09,518][INFO ][o.e.n.Node ] [upright92] initialized
[2019-04-22T15:20:09,519][INFO ][o.e.n.Node ] [upright92] starting ...
[2019-04-22T15:20:09,899][INFO ][o.e.t.TransportService ] [upright92] publish_address {127.0.0.1:9300}, bound_addresses {[::1]:9300}, {127.0.0.1:9300}
[2019-04-22T15:20:10,031][WARN ][o.e.b.BootstrapChecks ] [upright92] max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
[2019-04-22T15:20:10,031][WARN ][o.e.b.BootstrapChecks ] [upright92] max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
[2019-04-22T15:20:10,036][WARN ][o.e.b.BootstrapChecks ] [upright92] the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
[2019-04-22T15:20:10,083][INFO ][o.e.c.c.ClusterBootstrapService] [upright92] no discovery configuration found, will perform best-effort cluster bootstrapping after [3s] unless existing master is discovered
[2019-04-22T15:20:10,450][INFO ][o.e.c.s.MasterService ] [upright92] elected-as-master ([1] nodes joined)[{upright92}{ye8JEZFJQTKyuhUpmhA-BA}{pyPyaSJ2Q5iZ5ZN9faikdQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=33443553280, xpack.installed=true, ml.max_open_jobs=20} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 2, version: 16, reason: master node changed {previous [], current [{upright92}{ye8JEZFJQTKyuhUpmhA-BA}{pyPyaSJ2Q5iZ5ZN9faikdQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=33443553280, xpack.installed=true, ml.max_open_jobs=20}]}
[2019-04-22T15:20:10,748][INFO ][o.e.c.s.ClusterApplierService] [upright92] master node changed {previous [], current [{upright92}{ye8JEZFJQTKyuhUpmhA-BA}{pyPyaSJ2Q5iZ5ZN9faikdQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=33443553280, xpack.installed=true, ml.max_open_jobs=20}]}, term: 2, version: 16, reason: Publication{term=2, version=16}
[2019-04-22T15:20:10,890][INFO ][o.e.h.AbstractHttpServerTransport] [upright92] publish_address {127.0.0.1:9200}, bound_addresses {[::1]:9200}, {127.0.0.1:9200}
[2019-04-22T15:20:10,899][INFO ][o.e.n.Node ] [upright92] started
[2019-04-22T15:20:11,236][WARN ][o.e.x.s.a.s.m.NativeRoleMappingStore] [upright92] Failed to clear cache for realms [[]]
[2019-04-22T15:20:11,398][INFO ][o.e.l.LicenseService ] [upright92] license [8afe0008-71d3-43d3-9509-26615987d6e0] mode [basic] - valid
[2019-04-22T15:20:11,422][INFO ][o.e.g.GatewayService ] [upright92] recovered [0] indices into cluster_state
安装elasticsearch-7.0.0及插件的更多相关文章
- docker上安装elasticsearch和ik分词器插件和header,实现分词功能
docker run -di --name=tensquare_es -p 9200: -p 9300:9300 elasticsearch:5.6.8 创建elasticsearch容器(如果版本不 ...
- 安装ElasticSearch 6.1.1 head插件
https://blog.csdn.net/zoubf/article/details/79007908 主要参考了这个blog 才完成所有的配置,很好的参考资料
- [elk]elasticsearch5.0及head插件安装
ElasticSearch2.3/2.4升级到ElasticSearch5.0 参考文档(排名不分先后)https://www.elastic.co/guide/en/elasticsearch/re ...
- ElasticSearch 5.0及head插件安装
一.elasticsearch安装配置 1.官网下载源码包 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0 ...
- Linux下,非Docker启动Elasticsearch 6.3.0,安装ik分词器插件,以及使用Kibana测试Elasticsearch,
Linux下,非Docker启动Elasticsearch 6.3.0 查看java版本,需要1.8版本 java -version yum -y install java 创建用户,因为elasti ...
- 在Windows上安装Elasticsearch 5.0
在windows上安装Elasticsearch Elasticsearch可以使用.zip软件包安装在Windows上. elasticsearch-service.bat命令,它将设置Elasti ...
- elasticsearch5.0及head插件安装
这个瞎jb整了半天.准备把es2.4升级到5.0,结果老报错 环境:centos6.5+es2.4是ok的换成es5就出毛病.也不能说啥 ,我用的是最新的 源码解压启动时候报错,具体错误for ...
- elasticsearch5.0.0 安装插件及配置过程
elasticsearch5.0.0 安装插件及配置过程 由于es5.0是里程碑式的更新,所以很多变化的地方,暂时我就插件安装遇到的问题记录一下. 插件安装命令 2.3版本的安装命令 安装Marvel ...
- ELK——安装 logstash 2.2.0、elasticsearch 2.2.0 和 Kibana 3.0
本文内容 Elasticsearch logstash Kibana 参考资料 本文介绍安装 logstash 2.2.0 和 elasticsearch 2.2.0,操作系统环境版本是 CentOS ...
- 【入门】安装Elasticsearch5.0 部署Head插件
部署5.0版本的ES 5.0版本的ES跟之前的版本最大的不同之处就是多了很多环境的校验,比如jdk,max-files等等. 设置内核参数 vi /etc/sysctl.conf # 增加下面的内容 ...
随机推荐
- [C++]指针/指针数组/数组指针/多维指针/单值指针/多值指针
int main(){ //单值指针(指向单个值得指针,类同普通变量) int *px = new int; *px = 100; printf("%d",*px); delete ...
- [HAOI2018]奇怪的背包 (DP,数论)
[HAOI2018]奇怪的背包 \(solution:\) 首先,这一道题目的描述很像完全背包,但它所说的背包总重量是在模P意义下的,所以肯定会用到数论.我们先分析一下,每一个物品可以放无数次,可以达 ...
- 交换机console口连接
http://www.webkaka.com/info/archives/knowledge/2010/08/30452/
- shiroWeb项目-记住我(自动登陆实现)(十五)
用户登陆选择“自动登陆”本次登陆成功会向cookie写身份信息,下次登陆从cookie中取出身份信息实现自动登陆. 用户身份实现java.io.Serializable接口便于反序列化 package ...
- centos7入门
yum install net-tools 设置IP和掩码 ifconfig eth0 1.1.1.20 netmask 255.255.255.0 设置网关 route add default gw ...
- MySQL— 进阶
目录 一.视图 二.触发器 三.函数 四.存储过程 五.事务 一.视图 视图是一个虚拟表(非真实存在),其本质是[根据SQL语句获取动态的数据集,并为其命名],用户使用时只需使用[名称]即可获取结果集 ...
- IAR各个历史版本的下载地址
http://supp.iar.com/Updates/?product=EWarm 点击进入上述链接,拉到最底部,点击old version即可见到所有的历史版本!!!
- Linux MMC framework2:基本组件之core
1.前言 本文主要core组件的主要流程,在介绍的过程中,将详细说明和core相关的流程,涉及到其它组件的详细流程再在相关文章中说明. 2.主要数据结构和API TODO 3. 主要流程 3.1 mm ...
- Sql 正确删除用户过期的数据
怎样才算是正确的删除过期的数据呢?先交代一下前提,XX网站上面有一个放心企业专区,办理超级会员即可成为放心企业,放心企业可设置推荐职位展示在放心企业专区,信息都是存放在Info表中的,所谓的推荐职位就 ...
- 深入解析内存原理:RAM的基本原理
1. 寻址原理概述RAM 主要的作用就是存储代码和数据供CPU 在需要的时候调用.但是这些数据并不是像用袋子盛米那么简单,更像是图书馆中用有格子的书架存放书籍一样,不但要放进去还要能够在需要的时候准确 ...