{"id":744,"date":"2020-04-23T20:36:49","date_gmt":"2020-04-24T04:36:49","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=744"},"modified":"2020-04-26T21:56:57","modified_gmt":"2020-04-27T05:56:57","slug":"grafana-how-to-install-grafana-influxdb-on-centos-8","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/","title":{"rendered":"Grafana: How to Install Grafana &#038; InfluxDB on CentOS 8"},"content":{"rendered":"\n<p><a href=\"https:\/\/grafana.com\/grafana\/\">Grafana<\/a> is a platform used to visualize and analyze data from your network. It also has the ability to send alerts when certain conditions are met, and can import data from many of the popular ways to store it. I&#8217;ve recently been dedicating quite a bit of time to getting better at using it and trying to get the most out of it, because <a href=\"https:\/\/www.reddit.com\/r\/dataisbeautiful\/\">data it beautiful<\/a>, and Grafana makes it about as easy as can be.<br><br><a href=\"https:\/\/www.influxdata.com\/\">InfluxDB<\/a> is a time series database, which essentially means that all entries are time stamped to make it easy to see how data changed over time. This makes Influx ideal for tracking various metrics from systems on a network. The collector that I will be using for my examples is called <a href=\"https:\/\/www.influxdata.com\/time-series-platform\/telegraf\/\">Telegraf<\/a>, which is a product by the same company that makes InfluxDB<br><br>So over my next few articles, I plan to cover how to setup and make use of Grafana. I&#8217;ll be doing all of this on CentOS 8, but after the install process everything should be the same no matter which distro you prefer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Grafana<\/h2>\n\n\n\n<p>This article was written for Grafana 6.7.3, I&#8217;ll check if this process is the same when Grafana 7 is released and remove this text if it is.<br><br>Grafana maintains their own repository that we will have to add before we can install it. All the commands from here on in are going to assume that you are either acting as root, or are running them with <code>sudo<\/code>. To add the repo to <code>dnf<\/code> (CentOS&#8217;s package manager as of CentOS 8), we&#8217;ll need to make the file for it. Using whatever text editor you prefer, make the follow file:<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;root@osmium ~]$ cat \/etc\/yum.repos.d\/grafana.repo \n&#91;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<\/code><\/pre>\n\n\n\n<p><br>Now that the repo is added, we can install the package with:<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;root@osmium ~]# dnf install grafana<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Grafana Configuration<\/h2>\n\n\n\n<p>I won&#8217;t be covering how to setup HTTPS or LDAP in this article, so not much needs to be changed in the Grafana config for now. However, fields that may interest you are:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/etc\/grafana\/grafana.ini\n\n[server]\n# If your server is on multiple networks and you only want to allow connections from one,\n# change this field to be the IP the server has on that network\n# Or, if you are going to use a reverse proxy, change this to 127.0.0.1\nhttp_addr\n\n# Port 3000 is probably not used, but just in case keep this field in mind.\n# I recommend setting up a reverse proxy if you want to make Grafana listen on port 80 or 443\nhttp_port\n\n[security]\n# If you want to change the default admin user name, do so here and now\nadmin_user\n\n# This password can be changed later.\n# Do not set the password you plan to use long term in this field\nadmin_password\n\n# AES-256 CFB key used to sign passwords and secret parts of the configuration.\n# It can be a hassle to change later, so set it to something now or accept the default\n# If you have pwgen installed, you make a random string with something like `pwgen -s -1 40`\nsecret_key<\/pre>\n\n\n\n<p><br>Once you have set the initial options as you like, we can start the Grafana service and move on to the web page setup.<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# systemctl enable --now grafana-server<\/pre>\n\n\n\n<p><br>Once the service has started, access the web page that is being hosted from a web browser. You should be greeted with a page like below:<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"656\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png\" alt=\"Grafana sign in page\" class=\"wp-image-850\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png 1024w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-300x192.png 300w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-768x492.png 768w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image.png 1156w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Grafana sign in page<\/figcaption><\/figure>\n\n\n\n<p><br>If you cannot load the page, trying opening port 3000 in the firewall by doing:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# firewall-cmd --add-port=3000\/tcp<\/pre>\n\n\n\n<p><br>If that fixes the problem, run the same command with <code>--permanent<\/code> to make the change persistent.<br><br>On your first sign in you should be asked to change the admin user&#8217;s password to something more secure. I strongly recommend doing so.<br><br>Take some time to get used to the layout. Because we don&#8217;t have any data sources setup yet, there&#8217;s not much that can be done. But if you go through the preferences tabs, you can do things such as set the Organization Name, add new users, and setup Teams (which can be used to have different groups of users with access to different dashboards).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing InfluxDB<\/h2>\n\n\n\n<p>This article was written for Influx 1.8.0<br><br>In order for Grafana to be useful, it needs data sources. And one of the most commonly used is InfluxDB. As with Grafana, the first step is to setup the repository.<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# cat \/etc\/yum.repos.d\/influxdb.repo<br>[influxdb]<br>name = InfluxDB Repository<br>baseurl = https:\/\/repos.influxdata.com\/rhel\/8\/x86_64\/stable\/<br>enabled = 1<br>gpgcheck = 1<br>gpgkey = https:\/\/repos.influxdata.com\/influxdb.key<\/pre>\n\n\n\n<p><br>And then install the package:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# dnf install influxdb<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">InfluxDB Configuration<\/h2>\n\n\n\n<p>Influx requires a bit more setup than Grafana did, especially because I want password authentication on the command line.<br><br>First, edit the config file <code>\/etc\/influxdb\/influxdb.conf<\/code> and in the <code>[http]<\/code> section set the following field:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[http]\n  # false by default, but security is good so we're enabling it\n  auth-enabled = true<\/pre>\n\n\n\n<p><br>And now start the service so that we can finish configuring it:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# systemctl enable --now influxdb<\/pre>\n\n\n\n<p><br>Now we can connect to influx, create the first user and database, and move on.<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# influx\nConnected to http:\/\/localhost:8086 version 1.8.0\nInfluxDB shell version: 1.8.0\n&gt; CREATE USER admin WITH PASSWORD 'password123' WITH ALL PRIVILEGES\n&gt; auth\nusername: admin\npassword:\n&gt; CREATE DATABASE pfsense\n&gt; SHOW DATABASES\nname: databases\nname\n----\n_internal\npfsense<\/pre>\n\n\n\n<p><br><code>CREATE USER<\/code> will make the first admin user, which can be used in the future to manage users or databases. <code>auth<\/code> signs us in as that user. And then <code>CREATE DATABASE<\/code> adds a database that we will use in the future to receive data from <code>telegraf<\/code>.<br><br>The first user created MUST be done with <code>WITH ALL PRIVILEGES<\/code>, as it will act as the super admin. Other users can be created with more specific permissions and access to only certain databases. That can be done as follows:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&gt; CREATE USER pftelegraf WITH PASSWORD 'pfsense telegraf password'\n&gt; GRANT ALL PRIVILEGES ON pfsense TO pftelegraf<\/pre>\n\n\n\n<p><br>Where <code>ALL PRIVILEGES<\/code> can be <code>READ<\/code>, <code>WRITE<\/code>, or <code>ALL<\/code>.<br><br>Because data will be coming from other boxes on the network, you will most likely need to open a port in the firewall. That can be done by running:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@osmium ~]# firewall-cmd --permanent --add-port=8086\/tcp<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Add Data Source to Grafana<\/h2>\n\n\n\n<p>Now that Influx is setup, we can add the database we just made to Grafana as a data source. Once that is done, any dashboards that we can make can use it to get data for graphs.<br><br>Go back to the Grafana web page. From your home dashboard, click on the Gear on the left, and then Data Sources.<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"694\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1-1024x694.png\" alt=\"Along the left sidebar is a gear that opens the Configuration options, and then click Data Sources.\" class=\"wp-image-857\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1-1024x694.png 1024w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1-300x203.png 300w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1-768x520.png 768w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1.png 1163w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Data Sources<\/figcaption><\/figure>\n\n\n\n<p><br>This will open a list of all your data sources, which should currently be empty. So click the giant green Add Data Source button, and then from the list that shows up select InfluxDB.<br><br>Within the configuration page that comes up, we&#8217;re interested in five sections: Name, URL, Database, User, and Password. For me those will be set as follows:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Name: pfSense\nURL: http:\/\/localhost:8086\nDatabase: pfsense\nUser: pftelegraf\nPassword: pfsense telegraf password<\/pre>\n\n\n\n<p><br>Fill in those fields, and then click &#8220;Save &amp; Test&#8221; (the green button) at the bottom of the page. It should return &#8220;Data source is working&#8221;, which means we&#8217;re good to actually make dashboards now!<br><br>The next article will cover making a dashboard for a pfSense firewall using <code>Telegraf<\/code> and the InfluxDB database that we just added as a data source. You can <a href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-creating-a-dashboard-for-pfsense\/\">read that here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Grafana is a platform used to visualize and analyze data from your network. It also has the ability to send alerts when certain conditions are met, and can import data from many of the popular ways to store it. I&#8217;ve recently been dedicating quite a bit of time to getting better at using it and <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[45,170,8],"tags":[46,171,195,6],"coauthors":[37],"class_list":["post-744","post","type-post","status-publish","format-standard","hentry","category-centos","category-grafana","category-linux","tag-centos","tag-grafana","tag-influxdb","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Grafana &amp; InfluxDB on CentOS 8 - Angry Sysadmins<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/\" \/>\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 &amp; InfluxDB on CentOS 8 - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"Grafana is a platform used to visualize and analyze data from your network. It also has the ability to send alerts when certain conditions are met, and can import data from many of the popular ways to store it. I&#8217;ve recently been dedicating quite a bit of time to getting better at using it and Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-24T04:36:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-27T05:56:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png\" \/>\n<meta name=\"author\" content=\"Cat Kasin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cat Kasin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/\"},\"author\":{\"name\":\"Cat Kasin\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\"},\"headline\":\"Grafana: How to Install Grafana &#038; InfluxDB on CentOS 8\",\"datePublished\":\"2020-04-24T04:36:49+00:00\",\"dateModified\":\"2020-04-27T05:56:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/\"},\"wordCount\":920,\"commentCount\":6,\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/image-1024x656.png\",\"keywords\":[\"CentOS\",\"Grafana\",\"InfluxDB\",\"Linux\"],\"articleSection\":[\"CentOS\",\"Grafana\",\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/\",\"name\":\"How to Install Grafana & InfluxDB on CentOS 8 - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/image-1024x656.png\",\"datePublished\":\"2020-04-24T04:36:49+00:00\",\"dateModified\":\"2020-04-27T05:56:57+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/image.png\",\"width\":1156,\"height\":740},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/bailey\\\/grafana-how-to-install-grafana-influxdb-on-centos-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Grafana: How to Install Grafana &#038; InfluxDB on CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/151b2d23439b55b970060836f317a14d\",\"name\":\"Cat Kasin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g23b0ffb86dd6c08514a66a6a50f7a0a9\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g\",\"caption\":\"Cat Kasin\"},\"description\":\"I build virtual environments and challenges for Cybersecurity students to complete as a way to gain experience before graduating and entering the workforce.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/bailey\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Grafana & InfluxDB on CentOS 8 - Angry Sysadmins","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:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Grafana & InfluxDB on CentOS 8 - Angry Sysadmins","og_description":"Grafana is a platform used to visualize and analyze data from your network. It also has the ability to send alerts when certain conditions are met, and can import data from many of the popular ways to store it. I&#8217;ve recently been dedicating quite a bit of time to getting better at using it and Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/","og_site_name":"Angry Sysadmins","article_published_time":"2020-04-24T04:36:49+00:00","article_modified_time":"2020-04-27T05:56:57+00:00","og_image":[{"url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png","type":"","width":"","height":""}],"author":"Cat Kasin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Cat Kasin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/"},"author":{"name":"Cat Kasin","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d"},"headline":"Grafana: How to Install Grafana &#038; InfluxDB on CentOS 8","datePublished":"2020-04-24T04:36:49+00:00","dateModified":"2020-04-27T05:56:57+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/"},"wordCount":920,"commentCount":6,"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png","keywords":["CentOS","Grafana","InfluxDB","Linux"],"articleSection":["CentOS","Grafana","Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/","name":"How to Install Grafana & InfluxDB on CentOS 8 - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image-1024x656.png","datePublished":"2020-04-24T04:36:49+00:00","dateModified":"2020-04-27T05:56:57+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#primaryimage","url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image.png","contentUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/04\/image.png","width":1156,"height":740},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/bailey\/grafana-how-to-install-grafana-influxdb-on-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"Grafana: How to Install Grafana &#038; InfluxDB on CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/151b2d23439b55b970060836f317a14d","name":"Cat Kasin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g23b0ffb86dd6c08514a66a6a50f7a0a9","url":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e83bfa1b7d9ce082bd6b68938f580039db8d5571ad6c5d012e6a5243a189309e?s=96&d=mm&r=g","caption":"Cat Kasin"},"description":"I build virtual environments and challenges for Cybersecurity students to complete as a way to gain experience before graduating and entering the workforce.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/bailey\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/744","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=744"}],"version-history":[{"count":14,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/744\/revisions"}],"predecessor-version":[{"id":867,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/744\/revisions\/867"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=744"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=744"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=744"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=744"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}