@monroe.bahringer You can run the following commands below to install Elasticsearch In Ubuntu:
1 2 3 4 |
curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list
sudo apt update
sudo apt install elasticsearch
|
@monroe.bahringer
To install Elasticsearch in Ubuntu, you can follow the steps below:
1
|
curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - |
1
|
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list |
Note: If you want to install a different version of Elasticsearch, replace "7.x" in the above command with the desired version number.
1
|
sudo apt update |
1
|
sudo apt install elasticsearch |
During the installation process, you may be prompted to enter your password.
1
|
sudo systemctl status elasticsearch |
You should see that the service is active and running.
That's it! Elasticsearch is now installed and running on your Ubuntu system.