リソース監視もしなきゃね。
方針:
手軽に apt でインストールする。
BASIC認証をかける。
まずは apt でさくっとインストール。
プラグインも一緒に。
aptitude install munin munin-plugins-extra
プラグインを追加。
/usr/share/munin/plugins の下にどっさりプラグインがあるので適当に追加。
cd /etc/munin/plugins
sudo ln -s /usr/share/munin/plugins/[追加したいプラグイン] .
BASIC認証用ファイル作成
sudo htpasswd -c /etc/munin/passwd <ユーザー名>
apache 用の設定を修正
sudo vi /etc/munin/apache.conf
以下をコメントアウト
# Order allow,deny
# Allow from localhost 127.0.0.0/8 ::1
以下を追加
AuthUserFile /etc/munin/passwd
AuthName "Munin"
AuthType Basic
require valid-user
apache と munin-node を再起動。
/etc/init.d/munin-node restart
/etc/init.d/apache2 restart
ホスト名とドメインが、localhost のままだけど、
特に困らないので、とりあえずこのままで。
必要なら、以下を修正して、munin-node を再起動する。
/etc/munin/munin.conf
/etc/munin/munin-node.conf
munin のほうは、cron で更新されるので、待ってればOK。
待ちたくなければ、munin ユーザになって、cron で実行する
コマンドを手で実行すればOK。