Last active
June 5, 2017 10:50
-
-
Save jvandevelde/5868363 to your computer and use it in GitHub Desktop.
Install ElasticSearch 0.90.1 on Ubuntu 12.04.2 LTS
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
#!/bin/bash | |
cd ~ | |
# Install JDK | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre-headless -y | |
# Install & Start ES 0.90.1 | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.1.deb | |
sudo dpkg -i elasticsearch-0.90.1.deb | |
sudo service elasticsearch start | |
# Test by going to http://localhost:9200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment