Last active
August 15, 2018 08:28
-
-
Save sivsivsree/071dfd1697191fd67423c048472dbbe8 to your computer and use it in GitHub Desktop.
Install and Run Elasticsearch
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
sudo apt-get update | |
sudo apt-get install openjdk-7-jre-headless | |
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.2.deb | |
sudo dpkg -i elasticsearch-6.3.2.deb | |
sudo systemctl enable elasticsearch.service | |
#https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-elasticsearch-on-ubuntu-16-04 | |
# For config and Securing the ES | |
sudo systemctl start elasticsearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment