Friday, March 4, 2022

Deploy Grafana On Podman

 in This Tutorial you will Learn " How To install and configure Grafana with Podman on Rocky LInux 8.5"
Grafana is a complete observability stack that allows you to monitor and analyze logs, metrics, and traces
.
Podman: A tool for managing OCI containers and pods.
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      |    IP -192.168.1.20        |     Hostname - www.primaryhost.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; dnf groupinstall "Development Tools" -y
dnf install podman -y
podman -v
podman pull grafana
podman images
mkdir grafana_data ; cd grafana_data
podman run --name nextgentipsgrafana -d -p 3000:3000 -v $(pwd):/grafana_data/db:Z grafana
podman run --rm -it grafana
http://127.0.0.1:3000  admin/admin
_________________________________________________________________________________________

No comments:

Post a Comment