Skip to content

Instantly share code, notes, and snippets.

@gfabrizi
Created July 27, 2018 08:36
Show Gist options
  • Save gfabrizi/d784932fda38e2055863d448dd7ef940 to your computer and use it in GitHub Desktop.
Save gfabrizi/d784932fda38e2055863d448dd7ef940 to your computer and use it in GitHub Desktop.
Install ElasticSearch 0.90.13 on Debian 9 Stretch
#!/bin/bash
cd ~
# Install JDK
apt update
apt install openjdk-8-jre-headless
# Install & Start ES 0.90.1
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-0.90.1.deb
dpkg -i elasticsearch-0.90.1.deb
service elasticsearch start
# Test by going to http://localhost:9200
# or by console:
# curl -i 1127.0.0.1:9200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment