Skip to content

Instantly share code, notes, and snippets.

@showaltb
Created April 15, 2012 20:47
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 showaltb/2394751 to your computer and use it in GitHub Desktop.
Save showaltb/2394751 to your computer and use it in GitHub Desktop.
Install ElasticSearch 0.19.2 on CentOS 6.0
# (thanks to https://gist.github.com/1556657)
# As root:
yum install java-1.6.0-openjdk.i686
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.2.tar.gz
tar xf elasticsearch-0.19.2.tar.gz
rm elasticsearch-0.19.2.tar.gz
mv elasticsearch-0.19.2 /usr/local/share/elasticshare
wget https://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master
tar xf master
rm master
mv elasticsearch-elasticsearch-servicewrapper-*/service /usr/local/share/elasticshare/bin/
rm -rf elasticsearch-elasticsearch-servicewrapper-*/
/usr/local/share/elasticshare/bin/service/elasticsearch install
service elasticsearch start
# install CouchDB River Plugin for ElasticSearch
/usr/local/share/elasticshare/bin/plugin -install elasticsearch/elasticsearch-river-couchdb/1.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment