LoginSignup
5
3

More than 5 years have passed since last update.

Ubuntu(15.04)にElasticSearchをインストールする

Last updated at Posted at 2016-04-09

リポジトリの登録

$ wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
$ echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list

インストール

$ sudo apt-get update && sudo apt-get install elasticsearch

起動

$ sudo /etc/init.d/elasticsearch start

各種プラグインをインストール

$ sudo /usr/share/elasticsearch/bin/plugin install mobz/elasticsearch-head
$ sudo /usr/share/elasticsearch/bin/plugin install royrusso/elasticsearch-HQ

ブラウザで確認

http://localhost:9200/_plugin/head/
http://localhost:9200/_plugin/hq/

5
3
0

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
5
3