Resource icon

Tutorial: How to update/upgrade ElasticSearch

rdn

Well-known member
RoldanLT submitted a new resource:

Tutorial: How to update/upgrade ElasticSearch - My own steps on updating ES

Upgrade / Update Elastic Search:

Code:
cd /
curl -L -O -k https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.0.zip
unzip elasticsearch-1.0.0.zip
rm -rf elasticsearch-1.0.0.zip
rcelasticsearch stop
mv elasticsearch elasticsearch_old
mv elasticsearch-1.0.0 elasticsearch
rm -rf /elasticsearch_old/

Code:
curl -L -k https://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master | tar -xz
mv *servicewrapper*/service elasticsearch/bin/
rm -rf...

Read more about this resource...
 
I follow the steps exactly but always on the last step when I check the localhost for the version of elastichsearch, it always return 0.90.9
 
Top Bottom