# munin-node-configure
Plugin | Used | Extra information
------ | ---- | -----------------
acpi | no |
amavis | no |
apache_accesses | no |
apache_processes | no |
apache_volume | no |
:
===< 途中省略 >===
:
vmstat | yes |
vserver_cpu_ | no |
vserver_loadavg | no |
vserver_resources | no |
yum | no |
zimbra_ | no |
5. Web サーバの設定
Web サーバに Nginx を使用する場合は、設定ファイルに以下のような記述を追加する。(server ディレクティブ内に)
/etc/nginx/conf.d/default.conf
1234567891011
server { location /munin {alias /var/www/munin; index index.html index.htm index; allow 127.0.0.1; allow 192.168.11.0/24; deny all;}}
ちなみに、Web サーバに Apache を使用する場合は以下のような設定になる。
/etc/httpd/conf.d/munin.conf
12345678
ScriptAlias /munin/cgi/ /var/www/munin/cgi/
Alias /munin/ /var/www/munin/
<Directory /var/www/munin>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order deny,allow
Allow from all
</Directory>