This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service elasticsearch stop | |
yum list installed | grep elastic | |
yum remove elasticsearch.noarch | |
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.0.noarch.rpm | |
yum install elasticsearch-1.7.0.noarch.rpm | |
rm /var/lock/subsys/elasticsearch -Rf | |
rm -Rf /var/lib/elasticsearch/* | |
service elasticsearch start | |
curl -XGET '127.0.0.1:9200' |