License: Attribution-NonCommercial-ShareAlike 4.0 International
本文出自 Suzf Blog。 如未注明,均为 SUZF.NET 原创。
The RPM for Elasticsearch can be downloaded from our website or from our RPM repository. It can be used to install Elasticsearch on any RPM-based system such as OpenSuSE, SLES,
Centos, Red Hat, and Oracle Enterprise.
The latest stable version of Elasticsearch can be found on the Download Elasticsearch page. Other versions can be found on the Past Releases page.
RPM install is not supported on distributions with old versions of RPM, such as SLES 11 and CentOS 5. Please see Install Elasticsearch with.zip
or.tar.gz
instead. Elasticsearch requires Java 8 or later. Use the official Oracle distribution or an open-source distribution such as OpenJDK.
Install Java
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u65-b17/jdk-8u65-linux-x64.rpm" # rpm -Uvh jdk-8u65-linux-x64.rpm # java -version java version "1.8.0_65" Java(TM) SE Runtime Environment (build 1.8.0_65-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.65-b01, mixed mode)
Import the Elasticsearch PGP Key
Download and install the public signing key:rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
Installing from the RPM repository
cat > /etc/yum.repos.d/elasticsearch.repo << EOF [elasticsearch-5.x] name=Elasticsearch repository for 5.x packages baseurl=https://artifacts.elastic.co/packages/5.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md EOF yum install elasticsearch
Running Elasticsearch with systemd
To configure Elasticsearch to start automatically when the system boots up, run the following commands:sudo /bin/systemctl daemon-reload sudo /bin/systemctl enable elasticsearch.serviceElasticsearch can be started and stopped as follows:
sudo systemctl start elasticsearch.service sudo systemctl stop elasticsearch.serviceWhen systemd logging is enabled, the logging information are available using the journalctl commands: To tail the journal:
sudo journalctl -fTo list journal entries for the elasticsearch service:
sudo journalctl --unit elasticsearchTo list journal entries for the elasticsearch service starting from a given time:
sudo journalctl --unit elasticsearch --since "2016-10-30 18:17:16"Check man journalctl or https://www.freedesktop.org/software/systemd/man/journalctl.html for more command line options.
Checking that Elasticsearch is running
9200
on localhost
:
# ss -ntlp | grep 9200 LISTEN 0 128 ::ffff:127.0.0.1:9200 :::* users:(("java",pid=1287,fd=130)) LISTEN 0 128 ::1:9200 :::* users:(("java",pid=1287,fd=128)) # curl -XGET '127.0.0.1:9200/?pretty' { "name" : "ZlbJlUp", "cluster_name" : "elasticsearch", "cluster_uuid" : "pm-y-OxIT2qFutEF4cxRUQ", "version" : { "number" : "5.3.0", "build_hash" : "3adb13b", "build_date" : "2017-03-23T03:31:50.652Z", "build_snapshot" : false, "lucene_version" : "6.4.1" }, "tagline" : "You Know, for Search" }Link: https://www.elastic.co/guide/en/elasticsearch/reference/current/rpm.html