このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
- 03 Zed editor 設定 [Windowsでビルド]
- 09 ↷ 50_dialy:2025:09:09 から 50_dialy:2025:09:08 へページを名称変更しました。
- 06 ↷ 50_dialy:2025:06 から 50_dialy:2025:09:06 へページを移動しました。
最近の更新
文書の過去の版を表示しています。
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