# install openjdk-8
sudo aptitude update
sudo aptitude -y upgrade
sudo apt-get purge openjdk*
sudo apt-get -y install openjdk-8-jdk
#Install elastic search
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-6.x.list
sudo apt-get update && sudo apt-get install elasticsearch
#Enable ElasticSearch to run as a service
sudo systemctl enable elasticsearch.service
#Configure the network binding so we can connect to ElasticSearch from any host
sudo scp /home/vagrant/hws/elasticsearch.yml /etc/elasticsearch
sudo systemctl start elasticsearch
# |
Change |
User |
Description |
Committed |
|
#3
|
25621 |
Jen Bottom |
Integrating sone fixes from dev to main |
|
|
#2
|
23490 |
Jen Bottom |
Integrating changes for HTH and ElasticSearch Vagrant environments to main stream |
|
|
#1
|
23487 |
Jen Bottom |
Integrating ElasticSearch setup files from dev to main |
|
|