Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents


UNDER CONSTRUCTION !!



Architecture and working principle


 



Advantages of the reference telemetry setup

...

Code Block
openjdk version "1.8.0_252"
OpenJDK Runtime Environment (build 1.8.0_252-8u252-b09-1ubuntu1-b09)
OpenJDK 64-Bit Server VM (build 25.252-b09, mixed mode)



Install NGINX


  1. Install Nginx by running the following command from command line:
Code Block
sudo apt-get install nginx


     2. If prompted, type y and hit Enter for the process to finish.


Install ElasticSearch


Elastic repositories enable access to all the open-source software in the ELK stack. To add them, start by importing the GPG key.

1 . Enter the following into terminal window to import the PGP key for Elastic:

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

2.The system should respond with OK,

3. Next, install the apt-transport-https package:

Code Block
sudo apt-get install apt-transport-https


4. Add the Elastic repository to your system’s repository list:

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



5.
Prior to installing Elasticsearch, update the repositories by entering:

Code Block
sudo apt-get update


6. Install Elasticsearch with the following command:

Code Block
sudo apt-get install elasticsearch


7. Elasticsearch uses a configuration file to control how it behaves. Edit the file.


Code Block
sudo nano /etc/elasticsearch/elasticsearch.yml