Skip to content

Instantly share code, notes, and snippets.

@shaneog
Created September 6, 2011 17:12
Show Gist options
  • Select an option

  • Save shaneog/1198248 to your computer and use it in GitHub Desktop.

Select an option

Save shaneog/1198248 to your computer and use it in GitHub Desktop.
elasticsearch ubuntu 11.04
cd ~
# Install the required JDK
sudo apt-get install openjdk-6-jre-headless
# Download, extract and move ElasticSearch
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.17.6.tar.gz -O elasticsearch.tar.gz
tar -xf elasticsearch.tar.gz
rm elasticsearch.tar.gz
sudo mv elasticsearch-* elasticsearch
sudo mv elasticsearch /usr/local/share
wget http://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master -O - | tar xz
mv *servicewrapper*/service /usr/local/share/elasticsearch/bin/
rm -Rf *servicewrapper*
sudo /usr/local/share/elasticsearch/bin/service/elasticsearch install
sudo ln -s `readlink -f /usr/local/share/elasticsearch/bin/service/elasticsearch` /usr/local/bin/rcelasticsearch
# sudo service elasticsearch start
# wget http://localhost:9200
@shaneog
Copy link
Copy Markdown
Author

shaneog commented Sep 8, 2011

Thanks, fixed!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment