Skip to content

Tag: openjdk

Installing Elasticsearch on Debian

Installing Elasticsearch (6.x) on Debian Download and install the public signing key: wget -qO – https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add – Installing the ‘apt-transport-https’ package before proceeding: apt-get install apt-transport-https Adding the repository definition to ‘/etc/apt/sources.list’ echo -e “\n# Elasticsearch\ndeb https://artifacts.elastic.co/packages/6.x/apt stable main” >> /etc/apt/sources.list Before installing elasticsearch, we need openjdk: apt-get install openjdk-8-jdk Installing elasticsearch:…