Difference between revisions of "Munin on Centos 6.5"

From vpsget wiki
Jump to: navigation, search
(Created page with " == '''Installation''' == Add epel repository: yum install epel-release Install Munin: yum install munin munin-node -y '''Munin configuring'''")
 
Line 8: Line 8:
 
  yum install munin munin-node -y
 
  yum install munin munin-node -y
  
'''Munin configuring'''
+
 
 +
== '''Munin configuring''' ==
 +
 
 +
Open:
 +
 
 +
nano /etc/httpd/conf.d/munin.conf
 +
 
 +
Insert after comments:
 +
Alias /munin /var/www/html/munin
 +
<Directory /var/www/html/munin>
 +
Options FollowSymLinks
 +
AllowOverride None
 +
Order allow,deny
 +
Allow from all
 +
</Directory>

Revision as of 13:21, 2 June 2015

Installation

Add epel repository:

yum install epel-release

Install Munin:

yum install munin munin-node -y


Munin configuring

Open:

nano /etc/httpd/conf.d/munin.conf

Insert after comments:

Alias /munin /var/www/html/munin
<Directory /var/www/html/munin>
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>