Skip to content

Instantly share code, notes, and snippets.

@SomeKittens
Created January 9, 2014 19:11
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 SomeKittens/8340077 to your computer and use it in GitHub Desktop.
Save SomeKittens/8340077 to your computer and use it in GitHub Desktop.
ElasticSearch script install
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.9.zip
unzip elasticsearch-0.90.9.zip -d /usr/local/elasticsearch
cd /usr/local/elasticsearch/elasticsearch-0.90.9
bin/plugin -install elasticsearch/elasticsearch-cloud-aws/1.16.0
bin/plugin -install mobz/elasticsearch-head
mv * /usr/local/elasticsearch/
cd ..
rm -R elasticsearch-0.90.9
cd config
echo '' >> elasticsearch.yml
echo '# Keep it local' >> elasticsearch.yml
echo 'network.host: "127.0.0.1"' >> elasticsearch.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment