Cacti の設定 について

Apache Statistics を 設定しても グラフが表示されない件

http://サーバー名/server-status?auto で 表示がされても、グラフに成らないのは

http.confを編集して

ExtendedStatus On ← ExtendedStatus有効化

#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ”.example.com” to match your domain to enable.
#
#<Location /server-status>
#??? SetHandler server-status
#??? Order deny,allow
#??? Deny from all
#??? Allow from .example.com
#</Location>
以下を追加
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 192.168.0.0/24 ← 内部ネットワークアドレスを指定
Allow from 127.0.0.1 ← Localhostを指定しないとダメ

</Location>