-
-
Save wfowlks/f1cb26bad81777b7f657 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env bash | |
# update apt | |
sudo apt-get update | |
# install java | |
sudo apt-get install openjdk-7-jre-headless -y | |
# install elasticsearch | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.5.0.deb | |
sudo dpkg -i elasticsearch-1.5.0.deb | |
sudo service elasticsearch start | |
# install head | |
sudo /usr/share/elasticsearch/bin/plugin -install mobz/elasticsearch-head |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment