Mario Parra
Mario Parra

Reputation: 1554

Installing Elasticsearch 1.7

I'm working on an app that, unfortunately, only works with Elasticsearch 1.7, but I can't find it anywhere (for Mac). This page doesn't appear to have a download link. I previously installed it via Homebrew, but now, the oldest version available is 2.4, and for some reason, my copy stopped working and I've since uninstalled it (not knowing it was no longer available).

I still have it installed and working on a different machine–is it possible to manually copy over and link the necessary files? Any help is really appreciated!

EDIT: Are These the steps I should be following or is this for servers only?

Upvotes: 0

Views: 1166

Answers (1)

Eugene
Eugene

Reputation: 3957

Actually this page has a download link: https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.0.zip You don't need a separate link for Mac since ElasticSearch in written on Java, so you just need JRE to run it. After you unzip it you should be able to run it like this:

cd bin
./elasticsearch

Upvotes: 2

Related Questions