このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
最近の更新
文書の過去の版を表示しています。
Munin はシンプルなシステムの監視とパフォーマンスデータの可視化を提供するツールです。
dnf install epel-release
dnf install munin munin-node
/etc/munin/munin.conf
[localhost] address 127.0.0.1 use_node_name yes
systemctl enable --now munin-node
このmunin-cronでデータを集めます。
/etc/cron.d/munin
*/5 * * * * munin /usr/bin/munin-cron
dnf install httpd systemctl enable --now httpd
/etc/httpd/conf.d/munin.conf
Alias /munin /var/www/html/munin <Directory /var/www/html/munin> Options None Require all granted </Directory>
systemctl restart httpd