ユーザ用ツール

サイト用ツール


このページの翻訳:



最近の更新



Tag Cloud

01_linux:04_監視:02_munin

文書の過去の版を表示しています。


02 Munin

Munin はシンプルなシステムの監視とパフォーマンスデータの可視化を提供するツールです。

インストール

epelインストール

dnf install epel-release

muninインストール

dnf install munin munin-node

設定

/etc/munin/munin.conf

[localhost]
    address 127.0.0.1
    use_node_name yes

munin起動

systemctl enable --now munin-node

munin-cron

このmunin-cronでデータを集めます。

/etc/cron.d/munin

*/5 * * * * munin /usr/bin/munin-cron

HTTP サーバーの設定

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
01_linux/04_監視/02_munin.1733322942.txt.gz · 最終更新: 2024/12/04 23:35 by matsui