Skip to content

Instantly share code, notes, and snippets.

@amalrik
Last active December 30, 2015 20:49
Show Gist options
  • Save amalrik/7883068 to your computer and use it in GitHub Desktop.
Save amalrik/7883068 to your computer and use it in GitHub Desktop.
sudo service elasticsearch stop
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.7.tar.gz
tar -xf elasticsearch-0.90.7.tar.gz
rm elasticsearch-0.90.7.tar.gz
sudo mv elasticsearch-0.90.7 /usr/local/elasticsearch/
cd /usr/local/elasticsearch/elasticsearch-0.90.7/
sudo ln -s <dir_data_do_es> data
sudo mkdir logs
curl -L https://github.com/elasticsearch/elasticsearch-servicewrapper/archive/master.zip
unzip master.zip
sudo mv *servicewrapper*/service /usr/local/share/elasticsearch/bin/
rm -Rf *servicewrapper*
sudo /usr/local/elasticsearch/elasticsearch-0.90.7/bin/service/elasticsearch install
sudo ln -s `readlink -f /usr/local/elasticsearch/elasticsearch-0.90.7/bin/service/elasticsearch` /usr/local/bin/rcelasticsearch
sudo service elasticsearch start
#curl http://localhost:9200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment