メモエントリーです。
シンボリックリンクを追加
ln -s /usr/share/munin/plugins/apache_accesses /etc/munin/plugins/apache_accesses ln -s /usr/share/munin/plugins/apache_processes /etc/munin/plugins/apache_processes ln -s /usr/share/munin/plugins/apache_volume /etc/munin/plugins/apache_volume
httpd.confに以下を追加(これよく忘れる・・)
ExtendedStatus On
locationで設定出来ないケースもあるのでバーチャルホストで定義してしまう
#status
<VirtualHost *:80>
ServerName 127.0.0.1
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
allow from 127.0.0.1
</Location>
</VirtualHost>
curlなどで叩いてみる
curl http://127.0.0.1/server-status
問題なければmunin-nodeをrestart