Elasticsearch - 环境准备

Precondition:

Ubuntu OS

环境准备:

1. JAVA_HOME

1.1 Download the jdk8 (jdk-8u25-linux-x64.tar.gz) from official website

  1.1.1 check your pc‘s version:  uname -m

      if  x86_64 printed, your pc is 64-bits

  1.1.2 download the jdk8 (jdk-8u25-linux-x64.tar.gz) from official website and extract

1.2 Set JAVA_HOME

  See also Java 环境变量

2. Elasticsearch

2.1 Download from official website and extract

2.2 Go to the directory

  cd ~/Documents/App/elasticsearch-1.4.2/

2.3 Run elasticsearch

  bin/elasticsearch -f  (-f means running in front)

2.4 How to know if it is running

  Access the url below in browser

  http://localhost:9200

2.5 Stop elasticsearch

  Ctrl + c

Note: if the service is not running in front, we can stop it from browser

http://localhost:9200/_cluster/nodes/_shutdown

Or we can stop it using curl

curl -XPOST http://localhost:9200/_cluster/nodes/_shutdown
时间: 2024-10-02 23:11:20

Elasticsearch - 环境准备的相关文章

ElasticSearch 环境安装

1)官网安装教程: http://www.elasticsearch.org/guide/reference/setup/installation/ 2)简单安装: http://log.medcl.net/item/2011/08/diving-into-elasticsearch-4-installation-and-configuration/ run as a service: 解压 elasticsearch-servicewrapper-master.zip,然后将解压之后的serv

Elasticsearch环境快速搭建以及注意点

本文主要说明使用docker搭建开发用Elasticsearch的相关要点,包含有: 搭建Elasticsearch集群docker环境 搭建Kibana的docker环境 一.搭建Elasticsearch环境 docker下存在两个标准的Elasticsearch镜像,分别为elasticsearch:latest 和 docker.elastic.co/elasticsearch/elasticsearch ,前者目前的Elasticsearch版本为5.*,版本略微落后:后者最新版本为

分布式搜索elasticsearch 环境搭建

1.elasticsearch安装 elasticsearch的安装超级easy,解压即用(要事先安装好java环境). 到官网 http://www.elasticsearch.org下载最新版的 elasticsearch 运行包: 下载完解开有三个包: bin 是运行的脚本, config 是设置文件, lib 是放依赖的包. plugins 的文件夹,把插件放到这个文件夹中. Linux 环境下直接运行 bin/elasticsearch 就开启了: windows 运行 bin/ela

Centos7 Linux下搭建Elasticsearch环境

1.先准备好Elasticsearch的gz包,这里我用的是6.2.3版本的     以及一台Linux主机,在没有啦! 2.把gz包放入linux下,然后解压, tar -zxvf 压缩文件 当然你还需要安装jdk,需要环境变量 同样把压缩包拖入linux主机里面,解压完成后 再在 vim etc/profile 编辑如下文件 JAVA_HOME=你的jdk解压路径 PATH=$JAVA_HOME/bin:$PATH CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAV

logstash kibana elasticsearch环境部署

ElasticSearch 下载地址: https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.4.1.tar.gz 依赖环境: java 参考地址:https://www.elastic.co/downloads/elasticsearch 解压软件包 tar -xvf elasticsearch-5.4.1.tar.gz 进入解压目录 cd elasticsearch-5.4.1 编辑配置文件 config/e

python elasticsearch环境搭建

windows linux环境搭建 windows下载zip linux下载tar 下载地址:https://www.elastic.co/downloads/elasticsearch 解压后运行:bin/elasticsearch (or bin\elasticsearch.bat on Windows) 检查是否成功:访问 http://localhost:9200 linux下不能以root用户运行, 普通用户运行报错: java.nio.file.AccessDeniedExcepti

Centos安装Elasticsearch环境

由于Es是Java写的,安装ES的前提先安装好JDK. Es环境搭建: 1.下载ES包上传到服务器,下载地址: https://www.elastic.co/cn/downloads/elasticsearch 2.解压下载的Tar包 [[email protected] software]# tar -zxvf elasticsearch-7.6.0-linux-x86_64.tar.gz 3.重命名文件夹名称 [[email protected] software]# mv elastics

ELK 学习笔记之 elasticsearch环境搭建

ELK概述: ElasticSearch是个开源分布式搜索引擎,它的特点有:分布式,零配置,自动发现,索引自动分片,索引副本机制,restful风格接口,多数据源,自动搜索负载等 Logstash是一个完全开源的工具,它可以对你的日志进行收集.分析,并将其存储供以后使用 Kibana 是一个开源和免费的工具,它可以为 Logstash 和 ElasticSearch 提供的日志分析友好的 Web 界面,可以帮助您汇总.分析和搜索重要数据日志 ElasticSearch 安装部署: 安装: tar

一文教您如何通过 Docker 快速搭建各种测试环境(Mysql, Redis, Elasticsearch, MongoDB) | 建议收藏

原文:一文教您如何通过 Docker 快速搭建各种测试环境(Mysql, Redis, Elasticsearch, MongoDB) | 建议收藏 欢迎关注个人微信公众号: 小哈学Java, 文末分享阿里 P8 高级架构师吐血总结的 <Java 核心知识整理&面试.pdf>资源链接!! 个人网站: https://www.exception.site 小哈今天给大家分享的主题是,如何通过 Docker 快速搭建各种测试环境,本文列举的,也是小哈在工作中经常用到的,其中包括 Mysql