Last active
December 16, 2016 16:21
-
-
Save fabiotatsuo/fc62b4468dc53c1da0d4 to your computer and use it in GitHub Desktop.
Install ElasticSearch 1.6.0 Ubuntu 15.04
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
Install Java | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
sudo aptitude -y install oracle-java8-installer | |
java -version | |
Install ElasticSearch | |
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.6.0.deb | |
sudo dpkg -i elasticsearch-1.6.0.deb | |
sudo update-rc.d elasticsearch defaults 95 10 | |
dpkg --contents elasticsearch-1.6.0.deb | |
sudo vim /etc/elasticsearch/elasticsearch.yml | |
network.host: localhost | |
sudo service elasticsearch start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment