Thank you for your feedback and your help. I have cleared the time zone. It doesn't have to be an external storage device. If possible, the oldest files are always deleted automatically. I have attached a screenshot showing the storage settings in zoneminder and also the storage path; no folders are created there. Where should www-data:www-data be entered, under URL?
Here is an excerpt from a log file:
10/09/24 22:14:27.086032 zmc_m5[208131].INF-zm_monitor.cpp/1680 [Eingang (Cam3): 25700 - Capturing at 15.00 fps, capturing bandwidth 95119bytes/sec Analysing at 15.00 fps]
10/09/24 22:14:33.719371 zmc_m5[208131].INF-zm_monitor.cpp/1680 [Eingang (Cam3): 25800 - Capturing at 15.08 fps, capturing bandwidth 86982bytes/sec Analysing at 14.92 fps]
10/09/24 22:14:35.913324 zmc_m5[247471].ERR-zm_monitor.cpp/678 [Can't mkdir /var/cache/zoneminder/events/5: Permission denied]
10/09/24 22:14:35.913391 zmc_m5[247471].INF-zmc.cpp/220 [Starting Capture version 1.36.33]
10/09/24 22:14:38.708492 zmc_m5[247471].INF-zm_monitor.cpp/1680 [Eingang (Cam3): 0 - Capturing at 0.00 fps, capturing bandwidth 172bytes/sec Analysing at 0.00 fps]
10/09/24 22:14:40.033144 zmc_m5[247471].INF-zm_monitor.cpp/1680 [Eingang (Cam3): 60 - Capturing at 45.29 fps, capturing bandwidth 269991bytes/sec Analysing at 34.73 fps]
10/09/24 22:14:41.364447 zmc_m5[247471].INF-zm_monitor.cpp/1680 [Eingang (Cam3): 80 - Capturing at 15.02 fps, capturing bandwidth 102374bytes/sec Analysing at 15.02 fps]
- Bildschirmfoto vom 2024-10-09 22-06-33.png (171.97 KiB) Viewed 4812 times
- Bildschirmfoto1.png (102.38 KiB) Viewed 4812 times
I have Linux Mint, a friend sent me the instructions for installing it:
sudo apt update
sudo apt upgrade
sudo apt install mariadb-server
sudo su
mariadb
CREATE DATABASE zm;
CREATE USER zmuser@localhost IDENTIFIED BY 'zmpass';
GRANT ALL ON zm.* TO zmuser@localhost;
FLUSH PRIVILEGES;
exit;
exit
sudo apt install zoneminder
sudo chgrp -c www-data /etc/zm/zm.conf
sudo a2enconf zoneminder
sudo a2enmod cgi
sudo systemctl reload apache2.service
sudo mysql -u root -p < /usr/share/zoneminder/db/zm_create.sql
Enter bei Passwort
sudo mysql -u root -p -e "grant all on zm.* to 'zmuser'@localhost identified by 'zmpass';"
Enter bei Passwort
sudo mysqladmin -u root -p reload
Enter bei Passwort
sudo systemctl restart zoneminder.service
sudo systemctl status zoneminder.service