1. RPMレポジトリからインストール

RPMレポジトリからインストール

RPMレポジトリからインストールする場合、以下の公式ドキュメントに沿ってインストールします。

Install Elasticsearch with RPM

  • CentOS7・Elasticsearch 6.3

  • CentOS7にElasticsearch 6.3をインストールする場合、最初にルート権限で以下を実行します。

    rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

    次に、以下の内容のファイル /etc/yum.repos.d/elasticsearch.repo を作成します。

    [elasticsearch-6.x]
    name=Elasticsearch repository for 6.x packages
    baseurl=https://artifacts.elastic.co/packages/6.x/yum
    gpgcheck=1
    gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
    enabled=1
    autorefresh=1
    type=rpm-md
    インストール可能なElasticsearchのバージョンを確認します。
    # yum list elasticsearch
    読み込んだプラグイン:fastestmirror
    base                                                                                    | 3.6 kB  00:00:0
    ...
    ...
     * updates: ftp.iij.ad.jp
    elasticsearch-6.x                                                                                      211/211
    ...
    利用可能なパッケージ
    elasticsearch.noarch                                 6.3.1-1                                  elasticsearch-6.x

    yumコマンドでインストールします。

    yum install elasticsearch
    ...
    ...
    インストール:
      elasticsearch.noarch 0:6.3.1-1                                                                               
    
    完了しました!