<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: WalkerNea</title>
    <description>The latest articles on DEV Community by WalkerNea (@walkernea).</description>
    <link>https://dev.to/walkernea</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3948624%2Fd2776811-d310-4db8-9191-bcaf6afc6410.png</url>
      <title>DEV Community: WalkerNea</title>
      <link>https://dev.to/walkernea</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/walkernea"/>
    <language>en</language>
    <item>
      <title>Prometheus Setup Manual</title>
      <dc:creator>WalkerNea</dc:creator>
      <pubDate>Mon, 01 Jun 2026 23:48:00 +0000</pubDate>
      <link>https://dev.to/walkernea/prometheus-setup-manual-5bmh</link>
      <guid>https://dev.to/walkernea/prometheus-setup-manual-5bmh</guid>
      <description>&lt;p&gt;This manual explains the basic installation of Prometheus, including how to configure Node Exporter and AlertManager in an easy-to-understand way.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✅ 1. Install Prometheus
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔧 Prepare Users and Directories
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;su -
yum update &lt;span class="nt"&gt;-y&lt;/span&gt;

&lt;span class="c"&gt;# Create the prometheus user (login disabled)&lt;/span&gt;
useradd &lt;span class="nt"&gt;--no-create-home&lt;/span&gt; &lt;span class="nt"&gt;--shell&lt;/span&gt; /bin/false prometheus

&lt;span class="c"&gt;# Create directories&lt;/span&gt;
&lt;span class="nb"&gt;mkdir&lt;/span&gt; /opt/prometheus
&lt;span class="nb"&gt;mkdir&lt;/span&gt; /var/lib/prometheus

&lt;span class="c"&gt;# Change ownership to the prometheus user&lt;/span&gt;
&lt;span class="nb"&gt;chown &lt;/span&gt;prometheus. /opt/prometheus
&lt;span class="nb"&gt;chown &lt;/span&gt;prometheus. /var/lib/prometheus
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  📦 Download and Extract the Prometheus Binary
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /opt/prometheus

&lt;span class="c"&gt;# Download the Prometheus binary&lt;/span&gt;
curl &lt;span class="nt"&gt;-LO&lt;/span&gt; https://github.com/prometheus/prometheus/releases/download/v2.19.2/prometheus-2.19.2.linux-amd64.tar.gz

&lt;span class="c"&gt;# Verify the hash&lt;/span&gt;
&lt;span class="nv"&gt;dwnl&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;68382959f73354b30479f9cc3e779cf80fd2e93010331652700dcc71f6b05586
diff &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;sha256sum &lt;/span&gt;prometheus-2.19.2.linux-amd64.tar.gz | &lt;span class="nb"&gt;awk&lt;/span&gt; &lt;span class="s1"&gt;'{print $1}'&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="nv"&gt;$dwnl&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;

&lt;span class="c"&gt;# Extract the archive&lt;/span&gt;
&lt;span class="nb"&gt;tar&lt;/span&gt; &lt;span class="nt"&gt;-zxvf&lt;/span&gt; prometheus-2.19.2.linux-amd64.tar.gz
&lt;span class="nb"&gt;cd &lt;/span&gt;prometheus-2.19.2.linux-amd64

&lt;span class="c"&gt;# Copy binaries&lt;/span&gt;
&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt; prometheus /usr/local/bin/
&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt; promtool /usr/local/bin/
&lt;span class="nb"&gt;chown &lt;/span&gt;prometheus. /usr/local/bin/prometheus
&lt;span class="nb"&gt;chown &lt;/span&gt;prometheus. /usr/local/bin/promtool
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 2. Install Node Exporter
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-LO&lt;/span&gt; https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz
&lt;span class="nb"&gt;chown &lt;/span&gt;ec2-user. node_exporter-1.0.1.linux-amd64.tar.gz
&lt;span class="nb"&gt;tar&lt;/span&gt; &lt;span class="nt"&gt;-zxvf&lt;/span&gt; node_exporter-1.0.1.linux-amd64.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 3. Create the Prometheus systemd Service
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class="no"&gt;_EOF_&lt;/span&gt;&lt;span class="sh"&gt; &amp;gt; /usr/lib/systemd/system/prometheus.service
[Unit]
Description=Prometheus Service
After=network.target

[Service]
Type=simple
Restart=always
RestartSec=1
User=prometheus
Group=prometheus
ExecStart=/usr/local/bin/prometheus &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --web.enable-lifecycle &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --config.file=/opt/prometheus/prometheus-2.19.2.linux-amd64/prometheus.yml &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --storage.tsdb.path=/var/lib/prometheus &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --web.console.templates=/opt/prometheus/prometheus-2.19.2.linux-amd64/consoles &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --web.console.libraries=/opt/prometheus/prometheus-2.19.2.linux-amd64/console_libraries &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;&lt;span class="sh"&gt;
  --storage.tsdb.retention=8d

[Install]
WantedBy=multi-user.target
&lt;/span&gt;&lt;span class="no"&gt;_EOF_

&lt;/span&gt;&lt;span class="c"&gt;# Start and enable the service&lt;/span&gt;
systemctl daemon-reload
systemctl start prometheus
systemctl &lt;span class="nb"&gt;enable &lt;/span&gt;prometheus
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;📌 If you want to reload Prometheus via API:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST http://&amp;lt;PROMETHEUS_IP&amp;gt;:9090/-/reload
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 4. Create the Node Exporter Service
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class="no"&gt;_EOF_&lt;/span&gt;&lt;span class="sh"&gt; &amp;gt; /usr/lib/systemd/system/node-exporter.service
[Unit]
Description=Node Exporter Service
After=network.target

[Service]
Type=simple
Restart=always
RestartSec=1
User=prometheus
Group=prometheus
ExecStart=/home/ec2-user/node_exporter-1.0.1.linux-amd64/node_exporter
ExecReload=/bin/kill -s HUP &lt;/span&gt;&lt;span class="nv"&gt;$MAINPID&lt;/span&gt;&lt;span class="sh"&gt;
ExecStop=/bin/kill -s QUIT &lt;/span&gt;&lt;span class="nv"&gt;$MAINPID&lt;/span&gt;&lt;span class="sh"&gt;

[Install]
WantedBy=multi-user.target
&lt;/span&gt;&lt;span class="no"&gt;_EOF_

&lt;/span&gt;systemctl daemon-reload
systemctl start node-exporter
systemctl &lt;span class="nb"&gt;enable &lt;/span&gt;node-exporter
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 5. Access Prometheus
&lt;/h2&gt;

&lt;p&gt;Open the following URL in your browser to check the metrics:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://&amp;lt;PROMETHEUS_IP&amp;gt;:9090/metrics
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 6. Example prometheus.yml Configuration File
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;global&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;scrape_interval&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;15s&lt;/span&gt;
  &lt;span class="na"&gt;evaluation_interval&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;15s&lt;/span&gt;

&lt;span class="na"&gt;alerting&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;alertmanagers&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;static_configs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;targets&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;localhost:9093'&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;

&lt;span class="na"&gt;rule_files&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;rules.yml&lt;/span&gt;

&lt;span class="na"&gt;scrape_configs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;job_name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;prometheus'&lt;/span&gt;
    &lt;span class="na"&gt;static_configs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;targets&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;localhost:9090'&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 7. Install and Configure AlertManager
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-LO&lt;/span&gt; https://github.com/prometheus/alertmanager/releases/download/v0.21.0/alertmanager-0.21.0.linux-amd64.tar.gz
&lt;span class="nv"&gt;dwnl&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;9ccd863937436fd6bfe650e22521a7f2e6a727540988eef515dde208f9aef232
diff &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;sha256sum &lt;/span&gt;alertmanager-0.21.0.linux-amd64.tar.gz | &lt;span class="nb"&gt;awk&lt;/span&gt; &lt;span class="s1"&gt;'{print $1}'&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="nv"&gt;$dwnl&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nb"&gt;tar&lt;/span&gt; &lt;span class="nt"&gt;-zxvf&lt;/span&gt; alertmanager-0.21.0.linux-amd64.tar.gz

&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt; alertmanager-0.21.0.linux-amd64/alertmanager /usr/local/bin/
&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt; alertmanager-0.21.0.linux-amd64/amtool /usr/local/bin/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Create the AlertManager systemd Service
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class="no"&gt;_EOF_&lt;/span&gt;&lt;span class="sh"&gt; &amp;gt; /usr/lib/systemd/system/alert-manager.service
[Unit]
Description=AlertManager Service for Prometheus
After=network.target

[Service]
Type=simple
Restart=always
RestartSec=1
User=prometheus
Group=prometheus
ExecStart=/usr/local/bin/alertmanager --config.file=/home/ec2-user/alertmanager-0.21.0.linux-amd64/alertmanager.yml

[Install]
WantedBy=multi-user.target
&lt;/span&gt;&lt;span class="no"&gt;_EOF_

&lt;/span&gt;systemctl daemon-reload
systemctl start alert-manager
systemctl &lt;span class="nb"&gt;enable &lt;/span&gt;alert-manager
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 8. Example Rule File (rules.yml)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;groups&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;example&lt;/span&gt;
    &lt;span class="na"&gt;rules&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;alert&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;InstanceDown&lt;/span&gt;
        &lt;span class="na"&gt;expr&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;up == &lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;
        &lt;span class="na"&gt;for&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;1m&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  🔗 Reference Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Prometheus Official Website: &lt;a href="https://prometheus.io" rel="noopener noreferrer"&gt;https://prometheus.io&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/prometheus" rel="noopener noreferrer"&gt;https://github.com/prometheus&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitLab Integration: &lt;a href="https://docs.gitlab.com/ee/administration/monitoring/prometheus/" rel="noopener noreferrer"&gt;https://docs.gitlab.com/ee/administration/monitoring/prometheus/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;AlertManager Templates: &lt;a href="https://www.freedesktop.org/software/systemd/man/systemd.service.html" rel="noopener noreferrer"&gt;https://www.freedesktop.org/software/systemd/man/systemd.service.html&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;If you would like further improvements to this manual, Kubernetes integration, or Slack notification setup examples, feel free to ask!&lt;/p&gt;

&lt;p&gt;Sharing knowledge is my passion.&lt;br&gt;&lt;br&gt;
If you'd like to support me, a coffee is always welcome ☕&lt;/p&gt;

&lt;p&gt;&lt;a href="https://buymeacoffee.com/walkernea" rel="noopener noreferrer"&gt;https://buymeacoffee.com/walkernea&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>linux</category>
      <category>monitoring</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Grafana Installation</title>
      <dc:creator>WalkerNea</dc:creator>
      <pubDate>Mon, 01 Jun 2026 23:46:37 +0000</pubDate>
      <link>https://dev.to/walkernea/grafana-installation-2g7l</link>
      <guid>https://dev.to/walkernea/grafana-installation-2g7l</guid>
      <description>&lt;p&gt;This manual explains how to install Grafana and perform the initial startup configuration.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✅ 1. Grafana Installation Steps
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔄 Update the System
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;yum update &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  📦 Download and Verify the Grafana RPM Package
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-O&lt;/span&gt; https://dl.grafana.com/oss/release/grafana-7.0.6-1.x86_64.rpm

&lt;span class="c"&gt;# Verify the SHA256 checksum of the downloaded file&lt;/span&gt;
&lt;span class="nv"&gt;dwnl&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;507af4f7c912b4563c7a2d7c96ba4232acb731cf89759d04794ace6961bf50e0
diff &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;sha256sum &lt;/span&gt;grafana-7.0.6-1.x86_64.rpm | &lt;span class="nb"&gt;awk&lt;/span&gt; &lt;span class="s1"&gt;'{print $1}'&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &amp;lt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="nv"&gt;$dwnl&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  🧩 Install Grafana
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;yum &lt;span class="nb"&gt;install &lt;/span&gt;grafana-7.0.6-1.x86_64.rpm
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 2. Start the Grafana Service and Enable Auto-Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Reload the systemd daemon&lt;/span&gt;
systemctl daemon-reload

&lt;span class="c"&gt;# Check Grafana server status&lt;/span&gt;
systemctl status grafana-server

&lt;span class="c"&gt;# Start Grafana&lt;/span&gt;
systemctl start grafana-server

&lt;span class="c"&gt;# Enable Grafana to start automatically at boot&lt;/span&gt;
systemctl &lt;span class="nb"&gt;enable &lt;/span&gt;grafana-server

&lt;span class="c"&gt;# Check the status again&lt;/span&gt;
systemctl status grafana-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  ✅ 3. Access the Grafana Web Interface
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-v&lt;/span&gt; http://localhost:3000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open your browser and access:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://localhost:3000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Default login credentials:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Username: &lt;code&gt;admin&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Password: &lt;code&gt;admin&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After logging in, you will be prompted to change the password.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Reference Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Grafana Download: &lt;a href="https://grafana.com/grafana/download" rel="noopener noreferrer"&gt;https://grafana.com/grafana/download&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Prometheus Query Examples: &lt;a href="https://prometheus.io/docs/prometheus/latest/querying/examples/" rel="noopener noreferrer"&gt;https://prometheus.io/docs/prometheus/latest/querying/examples/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;The basic Grafana installation is now complete.&lt;/p&gt;

&lt;p&gt;Sharing knowledge is my passion.&lt;br&gt;&lt;br&gt;
If you'd like to support me, a coffee is always welcome ☕&lt;/p&gt;

&lt;p&gt;&lt;a href="https://buymeacoffee.com/walkernea" rel="noopener noreferrer"&gt;https://buymeacoffee.com/walkernea&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>linux</category>
      <category>monitoring</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
