{"id":1797,"date":"2023-03-30T12:30:00","date_gmt":"2023-03-30T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1797"},"modified":"2023-08-29T07:40:04","modified_gmt":"2023-08-29T12:40:04","slug":"how-to-install-grafana-on-almalinux-9","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/","title":{"rendered":"How to Install Grafana on AlmaLinux 9"},"content":{"rendered":"\n<p>In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS.<\/p>\n\n\n\n<p>If you ever doubt what Grafana is and what it is used for, we are here to explain it to you. Grafana is a multi-platform open-source visualization application that provides graphs, charts, and alerts through the web from the server data. Grafana is written in TypeScript and Go and is used by many developers, administrators, hosting companies, regular users and etc. In this tutorial, we are going to install Grafana and show you how to access it via reverse proxy made in the <a href=\"https:\/\/www.rosehosting.com\/apache-hosting\/\" title=\"\">Apache Web server<\/a>.<\/p>\n\n\n\n<p>This installation is very straightforward and will take up to 20 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with AlmaLinux 9 as OS<\/li>\n\n\n\n<li>Valid domain pointed to the servers IP address<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Before we start with Grafana installation, we need to update the system packages to the latest version available.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Grafana<\/h2>\n\n\n\n<p>Before we start with the installation, we need to add first, the Grafana repository since it is not added in AlmaLinux 9 by default. To do that, create the following file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/yum.repos.d\/grafana.repo<\/pre>\n\n\n\n<p>Paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[grafana]\nname=grafana\nbaseurl=https:\/\/packages.grafana.com\/oss\/rpm\nrepo_gpgcheck=1\nenabled=1\ngpgcheck=1\ngpgkey=https:\/\/packages.grafana.com\/gpg.key\nsslverify=1\nsslcacert=\/etc\/pki\/tls\/certs\/ca-bundle.crt\n<\/pre>\n\n\n\n<p>Save the file, close it, and update the system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y<\/pre>\n\n\n\n<p>Allow port <strong>3000<\/strong> in the firewall. This is the port that is Grafana service is running on.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --add-port=3000\/tcp --permanent\nsudo firewall-cmd --reload\n<\/pre>\n\n\n\n<p>Once the system is updated and the port is opened, install Grafana with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install grafana -y<\/pre>\n\n\n\n<p>Start and enable the service after successful installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start grafana-server &amp;&amp; sudo systemctl enable grafana-server<\/pre>\n\n\n\n<p>To check the status of the server, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status grafana-server<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# sudo systemctl status grafana-server\n\u25cf grafana-server.service - Grafana instance\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/grafana-server.service; enabled; vendor preset: disabled)\n     Active: active (running) since Thu 2023-02-02 09:33:19 CST; 28s ago\n       Docs: http:\/\/docs.grafana.org\n   Main PID: 1877 (grafana-server)\n      Tasks: 11 (limit: 24796)\n     Memory: 39.6M\n        CPU: 1.310s\n     CGroup: \/system.slice\/grafana-server.service\n             \u2514\u25001877 \/usr\/sbin\/grafana-server --config=\/etc\/grafana\/grafana.ini --pidfile=\/var\/run\/grafana\/grafana-server.pid --packaging=rpm cfg:default.paths.logs=\/\n<\/pre>\n\n\n\n<p>As we know, the Grafana service is running on port <strong>3000<\/strong>. We can check this by executing the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">netstat -tunlp | grep 3000<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# netstat -tunlp | grep 3000\ntcp6       0      0 :::3000                 :::*                    LISTEN      23921\/grafana-serve\n<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# netstat -tunlp | grep 3000\ntcp6       0      0 :::3000                 :::*                    LISTEN      1877\/grafana-server\n<\/pre>\n\n\n\n<p>You can now access the Grafana monitoring service on the URL: <strong>http:\/\/YourIPAddress:3000<\/strong>.<\/p>\n\n\n\n<p>This tutorial will not stop here. We will proceed with installing the web server required for reverse proxy and setting up the domain in the virtual host file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Apache<\/h2>\n\n\n\n<p>To install the Apache web server execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install httpd -y<\/pre>\n\n\n\n<p>Once installed, start and enable the service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable httpd &amp;&amp; sudo systemctl start httpd<\/pre>\n\n\n\n<p>Check if the service is up and running:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status httpd<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# sudo systemctl status httpd\n\u25cf httpd.service - The Apache HTTP Server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/httpd.service; enabled; vendor preset: disabled)\n    Drop-In: \/usr\/lib\/systemd\/system\/httpd.service.d\n             \u2514\u2500php-fpm.conf\n     Active: active (running) since Wed 2023-02-01 16:16:23 CST; 17h ago\n       Docs: man:httpd.service(8)\n   Main PID: 565 (httpd)\n     Status: \"Total requests: 626; Idle\/Busy workers 100\/0;Requests\/sec: 0.00983; Bytes served\/sec:   7 B\/sec\"\n      Tasks: 213 (limit: 24796)\n     Memory: 42.7M\n        CPU: 51.447s\n     CGroup: \/system.slice\/httpd.service\n             \u251c\u2500565 \/usr\/sbin\/httpd -DFOREGROUND\n             \u251c\u2500591 \/usr\/sbin\/httpd -DFOREGROUND\n             \u251c\u2500595 \/usr\/sbin\/httpd -DFOREGROUND\n             \u251c\u2500596 \/usr\/sbin\/httpd -DFOREGROUND\n             \u2514\u2500599 \/usr\/sbin\/httpd -DFOREGROUND\n\nFeb 01 16:16:23 host.test.vps systemd[1]: Starting The Apache HTTP Server...\nFeb 01 16:16:23 host.test.vps systemd[1]: Started The Apache HTTP Server.\nFeb 01 16:16:23 host.test.vps httpd[565]: Server configured, listening on: port 80\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Create Apache Virtual Host File and Reverse Proxy<\/h2>\n\n\n\n<p>We need to create an Apache virtual host configuration file in order can access Grafana via the domain name:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/httpd\/conf.d\/grafana.conf<\/pre>\n\n\n\n<p>Paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\n     ServerName yourdomain.com\n     DocumentRoot \/var\/www\/html\/\n     &lt;Directory \/var\/www\/html\/&gt;\n          Options FollowSymlinks\n          AllowOverride All\n          Require all granted\n     &lt;\/Directory&gt;\n\n    ProxyRequests off \n    ProxyPass \/ http:\/\/127.0.0.1:3000\/ \n    ProxyPassReverse \/ http:\/\/127.0.0.1:3000\/\n\n     ErrorLog \/var\/log\/httpd\/yourdomain.com_error.log\n     CustomLog \/var\/log\/httpd\/yourdomain.com.log combined\n&lt;\/VirtualHost&gt;\n<\/pre>\n\n\n\n<p>Save the file, close it, and check the syntax of the Apache configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">httpd -t<\/pre>\n\n\n\n<p>You should get this output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host project]# httpd -t\nSyntax OK\n<\/pre>\n\n\n\n<p>Restart the httpd.service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl restart httpd<\/pre>\n\n\n\n<p>Finally, you can access the Grafana via the domain name at <strong>http:\/\/Yourdomain.com<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/02\/graf1.jpg\" alt=\"\" class=\"wp-image-44869\"\/><\/figure>\n<\/div>\n\n\n<p>On fresh Grafana installation, the username is admin, and the password is admin.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/02\/graf2.jpg\" alt=\"\" class=\"wp-image-44870\"\/><\/figure>\n<\/div>\n\n\n<p>You need to set a new strong password with more characters and numbers.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/02\/graf3.jpg\" alt=\"\" class=\"wp-image-44871\"\/><\/figure>\n<\/div>\n\n\n<p>We hope that our step-by-step guide on installing Grafana on AlmaLinux 9 has made the process much clearer and easier for you. Now, we&#8217;d love to hear from you:<\/p>\n\n\n\n<p>Do you have any concerns about the steps or need more detailed information? Is there any specific topic or how-to guide you&#8217;re keen to see us delve into next?<\/p>\n\n\n\n<p>We&#8217;d appreciate your feedback in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to explain it to you. Grafana is a multi-platform open-source visualization application that provides graphs, charts, and alerts through the web from the server data. &#8230; <a title=\"How to Install Grafana on AlmaLinux 9\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/\" aria-label=\"More on How to Install Grafana on AlmaLinux 9\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1798,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1797","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-30T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T12:40:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Grafana on AlmaLinux 9\",\"datePublished\":\"2023-03-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T12:40:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/\"},\"wordCount\":542,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-grafana-on-almalinux-9.webp\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/\",\"name\":\"How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-grafana-on-almalinux-9.webp\",\"datePublished\":\"2023-03-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T12:40:04+00:00\",\"description\":\"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-grafana-on-almalinux-9.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-grafana-on-almalinux-9.webp\",\"width\":742,\"height\":372,\"caption\":\"install grafana on almalinux 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-grafana-on-almalinux-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Grafana on AlmaLinux 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog","description":"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog","og_description":"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2023-03-30T17:30:00+00:00","article_modified_time":"2023-08-29T12:40:04+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Grafana on AlmaLinux 9","datePublished":"2023-03-30T17:30:00+00:00","dateModified":"2023-08-29T12:40:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/"},"wordCount":542,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/","name":"How to Install Grafana on AlmaLinux 9 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp","datePublished":"2023-03-30T17:30:00+00:00","dateModified":"2023-08-29T12:40:04+00:00","description":"In this tutorial, we will explain how to install Grafana on AlmaLinux 9 OS. If you ever doubt what Grafana is and what it is used for, we are here to","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/03\/install-grafana-on-almalinux-9.webp","width":742,"height":372,"caption":"install grafana on almalinux 9"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-grafana-on-almalinux-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Grafana on AlmaLinux 9"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1797"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1797\/revisions"}],"predecessor-version":[{"id":1940,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1797\/revisions\/1940"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1798"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1797"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1797"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}