Skip to content

Instantly share code, notes, and snippets.

View rebelchris's full-sized avatar
🏠
Working from home

Chris Bongers rebelchris

🏠
Working from home
View GitHub Profile
@aabele
aabele / gist:a7ff7a5337dbcb8788faf2e64db60f21
Created June 30, 2016 09:42
Elasticsearch downgrade on CentOS 6
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'