2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu1810DesktopにKibana+Elasticsearchのコンテナを立ててみる

Last updated at Posted at 2018-11-15

以下の記事を参考にしました。

大変参考になりました。
Dockerで Elasticsearch + Kibana を動かしてみた

rootで作業しました。

1.dockerのインストール

apt install docker.io

これでdockerコマンドが使えるようになります。

2.Elasticsearchのコンテナを立てる。

まずElasticsearchコンテナ用のネットワークブリッジを用意します。


docker network create elasticsearch --driver bridge

3.Elasticsearchのコンテナをたてる。


docker run -d -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" -e "xpack.security.enabled=false" -e "xpack.monitoring.enabled=false"     -e "xpack.watcher.enabled=false" -e "xpack.graph.enabled=false" -e "xpack.ml.enabled=false" -e "ES_JAVA_OPTS=-Xms512m -Xmx512m" -p 9200:9200 -p 9300:9300 --name elasticsearch --network="elasticsearch" docker.elastic.co/elasticsearch/elasticsearch:6.5.0

これでElasticsearchは立ち上がるみたいです。
動いているか確認するならcurl localhost:9200をやってみるとよい。

4.Kibanaコンテナの起動


docker run -d --name kibana -p 5601:5601 -e "ELASTICSEARCH_URL=http://elasticsearch:9200" -e "xpack.graph.enabled=false" -e "xpack.security.enabled=false" -e "xpack.ml.enabled=false" --network="elasticsearch" docker.elastic.co/kibana/kibana:6.5.0

これでおk。
コンテナが起動する。

5.ブラウザで確認する

http:localhost:5601にアクセスしてみる。

Screenshot from 2018-11-15 18-08-05.png

中でセットアップされてるみたいで、この画面が出るまでは結構時間がかかる。
とりあえず触ってみたいならこれくらいでいいでしょ。

公式
https://www.elastic.co/guide/en/kibana/6.5/setup.html

2
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?