Skip to content

Instantly share code, notes, and snippets.

@gdakram
Created February 11, 2014 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdakram/8942833 to your computer and use it in GitHub Desktop.
Save gdakram/8942833 to your computer and use it in GitHub Desktop.
Debian - Install ElasticSearch
VERSION=0.90.1
sudo apt-get update
sudo apt-get install openjdk-6-jdk
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-$VERSION.deb
sudo dpkg -i elasticsearch-$VERSION.deb
# be sure you add "action.disable_delete_all_indices" : true to the config!!
# start script
sudo /etc/init.d/elasticsearch restart
# ------------------------------------------------------------------------------------
# if you want to remove it:
#sudo dpkg -r elasticsearch
# binaries & plugin
#/usr/share/elasticsearch/bin
# log dir
#/var/log/elasticsearch
# data dir
#/var/lib/elasticsearch
# config dir
#/etc/elasticsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment