Installazione di monitoraggio Grafana 8 Ubuntu 22.04

rafana è uno strumento di visualizzazione dei dati gratuito e open source, Grafana è uno strumento di visualizzazione dei dati gratuito e open source.
Di seguito è riportato il suo metodo di installazione.

Avviamo il terminale e aggiorniamo i pacchetti con il comando:

apt-get update -y

Installiamo i pacchetti necessari:

apt-get install gnupg2 curl wget git software-properties-common -y

Scarichiamo e installiamo il repository Grafany:

curl https://packages.grafana.com/gpg.key | apt-key add -
add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"

Stiamo aggiornando di nuovo i pacchetti:

apt-get update -y

E installiamo Grafana:

apt-get install grafana -y

Lo eseguiamo nel sistema:

systemctl start grafana-server
systemctl enable grafana-server

Installiamo Nginx come proxy per grafans:

apt-get install nginx -y

Creiamo un vhost:

nano /etc/nginx/conf.d/grafana.conf

il contenuto:

server {
        server_name grafana.naszadomena.pl;
        ascolta 80;
        access_log /var/log/nginx/grafana.log;

        
        Posizione / {
                proxy_pass http://localhost:3000;
                proxy_set_header X-Forwarded-Host $host:$server_port;
                proxy_set_header X-Forwarded-Server $host;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
}

Convalidiamo la configurazione di nginx emettendo il comando:

nginx -t

Se tutto va bene come in questo caso:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: file di configurazione /etc/nginx/nginx.conf test ha esito positivo

Stiamo ricaricando nginx

systemctl riavvia nginx

Se tutto è andato bene e abbiamo reindirizzato il sottodominio con il record A nella zona DNS all'ip del server, ad es.

grafana A dell'IP del server

Dopo essere andato all'indirizzo grafana.naszadomena.pl

Dovremmo vedere qualcosa del genere:

Inseriamo il tuo nome utente e password.

Il prossimo passo è cambiare la password.

Se tutto è andato bene, dovresti vedere la dashboard di Graphany.

Inoltre, possiamo proteggere il tutto con un certificato Let's Encrypt

Installiamo i pacchetti necessari:

apt-get install certbot python3-certbot-nginx -y

Quindi andiamo nella posizione eseguendo il comando:

certbot --nginx -d grafana.naszadomena.pl

Lungo la strada, accettiamo i termini della licenza

Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must
agree in order to register with the ACME server at
https://acme-v02.api.letsencrypt.org/directory
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(UN)gree/(C)ancel: UN

L'ultimo passaggio è contrassegnare il traffico su https://

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: No redirect - Make no further changes to the webserver configuration.
2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for
new sites, or if you're confident your site works on HTTPS. You can undo this
change by editing your web server's configuration.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate number [1-2] then [accedere] (press 'c' to cancel): 2

e fare clic due volte su Invio.

Linux

Udostępnij
Opublikowane przez
Linux

Post recenti

KeePass2 2.52 w Ubuntu 22.04

La guida seguente descrive come installare KeePass su Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installazione dell'editor PDF Master in Ubuntu 22.04

Master PDF Editor è un programma PDF completo, che include molte funzionalità. Oprócz tworzenia i edycji

2 years temu

iotop - monitoraggio della memoria

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Esegui più comandi in un lavoro cron

Puoi separare due o più comandi con il punto e virgola (;), Punto e virgola (;): służy do oddzielania

2 years temu

Modifica dei dati exif di una foto nel terminale Linux

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installazione di Rocket.Chat Server su Rocky Linux 8

La seguente guida descrive come installare Rocket.Chat su Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu