Elastic Stack #2:インストール 1



インストールの順序

[Elaticsearch] ⇒ [Logstash(Beats)] ⇒ [Kibana]

Java

Elasticsearch、Logstashの起動にはJava(バージョン8以上)が必要

評価環境

・仮想上のWindows10 1903 (18995.1)
・Javaはすでに入っている
C:\Windows\system32>java -version
java version "1.8.0_221"
Java(TM) SE Runtime Environment (build 1.8.0_221-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.221-b11, mixed mode)

Elasticsearchインストール

以下サイトよりWindows版をダウンロード
https://www.elastic.co/jp/downloads/elasticsearch

ファイル名は elasticsearch-7.4.0-windows-x86_64.zip
zipファイルを解凍し、C:\apps\elaticsearch-7.4.0 へコピー

メモリ使用率の変更
C:\apps\elasticsearch-7.4.0\config\jvm.options を開き、-Xmsxx、-Xmxxxの部分を確認。
最大ヒープサイズ(Xms)は物理メモリの50%以下となるように設定する。
仮想マシンのメモリは4GBなので、とりあえず設定変更せずにおく。
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space

-Xms1g
-Xmx1g
Elasticsearch起動
C:\apps\elasticsearch-7.4.0\bin\elasticsearch.bat をダブルクリックし実行
しばらく待ってDOS窓のログが
[INFO ][o.e.x.s.s.SecurityStatusChangeListener] [DESKTOP-37HDMPE] Active license is now [BASIC]; Security is disabled
から動かなくなったので、おそらく起動完了

Chromeから以下URLでアクセス
http://localhost:9200/?pretty

以下結果が表示された。おそらく正常起動している
{
  "name" : "DESKTOP-37HDMPE",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "2Nl7BGrzRM-qwq8P8NhAng",
  "version" : {
    "number" : "7.4.0",
    "build_flavor" : "default",
    "build_type" : "zip",
    "build_hash" : "22e1767283e61a198cb4db791ea66e3f11ab9910",
    "build_date" : "2019-09-27T08:36:48.569419Z",
    "build_snapshot" : false,
    "lucene_version" : "8.2.0",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}

※ 次回記事:#3:インストール 2

Elastic Stack, Elasticsearch

0 件のコメント:

その他の記事