From aab195bf8c333aa53bd6255ec559ed5f569c91d1 Mon Sep 17 00:00:00 2001 From: Didier Barzin Date: Sun, 19 Feb 2023 16:05:58 +0100 Subject: [PATCH] Update INSTALL.md --- INSTALL.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 0bb3496..2e3cf54 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -54,3 +54,34 @@ You can configure Pandora-box in the _pandora-box.ini_ file : ; Set quarantine folder QUARANTINE_FOLDER = /var/quarantine +# Troubleshooting + +Update Pandora + + poetry run update --yes + + +Check Pandora listening on port 6100 + + sudo lsof -i -P -n | grep LISTEN + +Result should contains + + ... + gunicorn: 1034 pandora 5u IPv4 27043 0t0 TCP *:6100 (LISTEN) + ... + +Test submit a file to Pandora with the command line + + poetry run pandora --url http://127.0.0.1:6100 -f <> + +Look a the Pandora logs files + + tail -500f /var/log/pandora_message.log + tail -500f /var/log/pandora_error.log + +Look a the Pandora-box logs files + + tail -500f /var/log/pandora-box.log + +