From 87222f6c71c9c72e5d470d7a34475454f01f3fa8 Mon Sep 17 00:00:00 2001 From: whirigoyen Date: Fri, 19 Nov 2021 17:45:19 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20pistes=20au=20probl=C3=A8me=20"Les=20zo?= =?UTF-8?q?oms=20ne=20s'affichent=20pas"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoMunin.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/HowtoMunin.md b/HowtoMunin.md index 62a0a7f6..2836ceb7 100644 --- a/HowtoMunin.md +++ b/HowtoMunin.md @@ -507,4 +507,23 @@ systemctl restart munin-node.service Puis attendre la prochaine exécution du *cron* ou la lancer soi-même :`sudo -u munin /usr/bin/munin-cron`. -> On peut remplacer les commandes `mkdir` et `printf | tee` par `systemctl edit munin-node.service`. \ No newline at end of file +> On peut remplacer les commandes `mkdir` et `printf | tee` par `systemctl edit munin-node.service`. + + +### Les zooms ne s'affichent pas + +Vérifier d'abord que l'on a bien activé les zooms : [HowtoMunin#munin-2]() + +Si ça ne marche toujours pas, vérifier l'existence et les droits de `/var/log/munin/munin-cgi-graph.log` : + +~~~ +# ls /var/log/munin/munin-cgi-graph.log +-rw-rw-r-- 1 munin www-data 0 Nov 19 17:34 /var/log/munin/munin-cgi-graph.log +~~~ + +Si le fichier est absent ou que les droits sont erronés : + +~~~ +# touch /var/log/munin/munin-cgi-graph.log +# chown munin:www-data /var/log/munin/munin-cgi-graph.log +~~~