$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Add Elasticsearch Repository Debian

January 17, 2018 | By the+gnu+linux+evangelist.

Add Elasticsearch Repo Debian




Hi! The Tip shows you How to Install Elasticsearch Repository Debian-Based GNU/Linux Systems.

And this Elasticsearch Debian Repo is valid also for:

  • Deepin
  • Parsix
  • antiX
  • MX Linux
  • CrunchBang
  • Parrot
  • LMDE
  • Linux Lite
  • SparkyLinux
  • MakuluLinux
  • Elive
  • (You need only find the Corresponding Debian Parent Release.)

How to Add Elasticsearch Repository Debian - Featured



  1. Open a Shell session
    (Press “Enter” to Execute Commands)

    How to Add Elasticsearch Repository Debian- Open Terminal
  2. First, Import Elasticsearch GPG Key.

    wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | 
    sudo apt-key add -

    (For the Newer Release in case of apt-key Issue see: Gpg.d Keyring Setup Guide.)

  3. Next Install Secure Apt Layer.

    sudo apt install apt-transport-https
    
  4. Then Add Elasticsearch Repository.

    echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | 
    sudo tee -a /etc/apt/sources.list.d/elastic-6.x.list
    

    If Got “User is Not in Sudoers file” then see: How to Enable sudo




  5. Finally, Refresh Apt Repositories.

    sudo apt update
  6. How to Install Elasticsearch on Debian-based Systems

    Elasticsearch Installation Guide