{"id":16737,"date":"2015-01-17T13:25:03","date_gmt":"2015-01-17T19:25:03","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16737"},"modified":"2022-06-03T03:46:24","modified_gmt":"2022-06-03T08:46:24","slug":"how-to-install-munin-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install Munin on an Ubuntu 14.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\" size-full wp-image-16739 alignleft\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png\" alt=\"munin vps\" width=\"305\" height=\"80\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png 305w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps-300x79.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps-50x13.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps-75x20.png 75w\" sizes=\"(max-width: 305px) 100vw, 305px\" \/><strong>Munin<\/strong> is an open source system monitoring, network monitoring and infrastructure monitoring application written in Perl, used to monitor the performance of your server, applications and more. Munin uses the RRDtool to create graphs which are accessible over a web browser. Also, Munin can be configured to send alerts when some service\/application etc. is not working and Munin will automatically send an additional email alert once the problem has been resolved.<br \/>\nTo <strong>install<\/strong>\u00a0<strong>Munin on an <a title=\"Ubuntu VPS\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu VPS<\/a><\/strong> follow the very easy steps described below.<\/p>\n<p><!--more--><\/p>\n<p>Make sure your <strong>Ubuntu 14.04 <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a><\/strong> is fully up to date using:<\/p>\n<pre>apt-get update\r\napt-get upgrade<\/pre>\n<p>Munin requires that Apache2 is installed and running on the VPS you will use for monitoring, so if it is not installed, run the following command to install it:<\/p>\n<pre>apt-get install apache2<\/pre>\n<h4>Install Munin<\/h4>\n<p>Install Munin and extra plugins using the following command:<\/p>\n<pre>apt-get install munin munin-node munin-plugins-extra<\/pre>\n<p>Create a backup of the original Apache configuration file for Munin, or rename it:<\/p>\n<p>mv \/etc\/munin\/apache.conf \/etc\/munin\/apache.conf.orig<\/p>\n<p>Edit the &#8216;\/etc\/munin\/apache.conf&#8217; configuration file and add the following lines:<\/p>\n<pre>vi \/etc\/munin\/apache.conf<\/pre>\n<pre>&lt;VirtualHost *:80&gt;\r\n   ServerName munin.your-domain.com\r\n   ServerAlias www.munin.your-domain.com\r\n   ServerAdmin yours@email.com\r\n      DocumentRoot \"\/var\/cache\/munin\/www\"\r\n      DirectoryIndex index.html\r\n\r\n   &lt;Directory \"\/var\/cache\/munin\/www\"&gt;\r\n      Options Indexes Includes FollowSymLinks MultiViews\r\n      AllowOverride AuthConfig\r\n      AuthUserFile \/etc\/munin\/htpasswd\r\n      AuthName \"munin\"\r\n      AuthType Basic\r\n      Require valid-user\r\n      Order allow,deny\r\n      Allow from all\r\n   &lt;\/Directory&gt;\r\n\r\n   CustomLog \/var\/log\/apache2\/munin.your-domain.com-access.log combined\r\n   ErrorLog \/var\/log\/apache2\/munin.your-domain.com-error.log\r\n\r\n   &lt;Directory \"\/etc\/munin\/static\"&gt;\r\n      Require all granted\r\n   &lt;\/Directory&gt;\r\n\r\n   &lt;Directory \"\/usr\/lib\/munin\/cgi\"&gt;\r\n      Options +ExecCGI\r\n      Require all granted\r\n   &lt;IfModule mod_fcgid.c&gt;\r\n      SetHandler fcgid-script\r\n   &lt;\/IfModule&gt;\r\n   &lt;IfModule !mod_fcgid.c&gt;\r\n      SetHandler cgi-script\r\n   &lt;\/IfModule&gt;\r\n   &lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Create an output directory for the Munin graphs and data:<\/p>\n<pre>mkdir -p \/var\/cache\/munin\/www\/<\/pre>\n<p>The Munin user needs to be able to write to files and directories inside the \u2018\/var\/cache\/munin\/www\u2019 directory, so it can easily be accomplished by executing the following command:<\/p>\n<pre>chown munin:munin -R \/var\/cache\/munin\/www<\/pre>\n<p>Create a backup of the original Munin configuration file:<\/p>\n<pre>cp \/etc\/munin\/munin.conf \/etc\/munin\/munin.conf.orig<\/pre>\n<p>Edit the Munin configuration file and add\/modify the following lines:<\/p>\n<pre>vi \/etc\/munin\/munin.conf<\/pre>\n<pre>dbdir \/var\/lib\/munin\r\nhtmldir \/var\/cache\/munin\/www\r\nlogdir \/var\/log\/munin\r\nrundir \/var\/run\/munin\r\ntmpldir \/etc\/munin\/templates\r\n\r\nincludedir \/etc\/munin\/conf.d\r\n\r\ngraph_strategy cron\r\ncgiurl_graph \/munin-cgi\/munin-cgi-graph\r\nhtml_strategy cron\r\n\r\n[localhost]\r\n    address 127.0.0.1\r\n    use_node_name yes<\/pre>\n<p>Run the following command to set a password for the Munin administrator user:<\/p>\n<pre>htpasswd -c \/etc\/munin\/htpasswd munin<\/pre>\n<p>This is important to keep your Munin output directory and the files in it private from search engines and unauthorized users.<\/p>\n<p>Restart Munin and Apache services for the changes to take effect:<\/p>\n<pre>service munin-node restart\r\nservice apache2 restart<\/pre>\n<p>It might take a couple of minutes for Munin to generate the graphs and html files. Then, open Munin at http:\/\/munin.your-domain.com using &#8216;munin&#8217; as username and the previously generated munin password as password and you will be able to access Munin graphs and data:<\/p>\n<p><img decoding=\"async\" class=\"alignnone wp-image-16744\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface.png\" alt=\"munin web interface\" width=\"350\" height=\"473\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface.png 536w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface-222x300.png 222w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface-74x100.png 74w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface-37x50.png 37w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-web-interface-56x75.png 56w\" sizes=\"(max-width: 350px) 100vw, 350px\" \/><\/p>\n<p>That is it. The Munin installation is now complete. Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\">Managed Linux VPS Hosting services<\/a>, in which case you can simply ask our expert Linux admins to<strong> install Munin<\/strong> for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Munin is an open source system monitoring, network monitoring and infrastructure monitoring application written in Perl, used to monitor the &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install Munin on an Ubuntu 14.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#more-16737\" aria-label=\"Read more about How to install Munin on an Ubuntu 14.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16739,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1703,13,1698],"tags":[701,702],"class_list":["post-16737","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-security","category-tutorials","category-ubuntu","tag-install-munin","tag-install-munin-on-ubuntu","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install Munin on an Ubuntu 14.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Munin on an Ubuntu 14.04 VPS\" \/>\n<meta property=\"og:description\" content=\"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2015-01-17T19:25:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"305\" \/>\n\t<meta property=\"og:image:height\" content=\"80\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Munin on an Ubuntu 14.04 VPS\",\"datePublished\":\"2015-01-17T19:25:03+00:00\",\"dateModified\":\"2022-06-03T08:46:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":424,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/munin-vps.png\",\"keywords\":[\"install Munin\",\"install Munin on Ubuntu\"],\"articleSection\":[\"Security\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/munin-vps.png\",\"datePublished\":\"2015-01-17T19:25:03+00:00\",\"dateModified\":\"2022-06-03T08:46:24+00:00\",\"description\":\"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/munin-vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/munin-vps.png\",\"width\":305,\"height\":80,\"caption\":\"munin vps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-munin-on-an-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Munin on an Ubuntu 14.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting","description":"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting","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.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install Munin on an Ubuntu 14.04 VPS","og_description":"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-01-17T19:25:03+00:00","article_modified_time":"2022-06-03T08:46:24+00:00","og_image":[{"width":305,"height":80,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Munin on an Ubuntu 14.04 VPS","datePublished":"2015-01-17T19:25:03+00:00","dateModified":"2022-06-03T08:46:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/"},"wordCount":424,"commentCount":3,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png","keywords":["install Munin","install Munin on Ubuntu"],"articleSection":["Security","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/","name":"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png","datePublished":"2015-01-17T19:25:03+00:00","dateModified":"2022-06-03T08:46:24+00:00","description":"How to install Munin on an Ubuntu 14.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/munin-vps.png","width":305,"height":80,"caption":"munin vps"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-munin-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Munin on an Ubuntu 14.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16737","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=16737"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16737\/revisions"}],"predecessor-version":[{"id":42144,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16737\/revisions\/42144"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16739"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16737"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16737"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16737"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}