I have a fresh new Linux install (Ubuntu server 22.04.04), first thing i’ve done is installing LAMP (Apache2, mysql 8.0.36, PHP 8.1.2). Nothing else is setup or changed,
I run the Docker installation with the command:
sudo bash -c "$(curl -fsSL https://install.bluecherrydvr.com/docker)"
No errors during install. At the end i could login to the :7001 address, changed admin password. Wanted to setup the storage locations (default path: /var/lib/bluecherry/recordings) but it says " Specified directory “/var/lib/bluecherry/recordings " exists, but is not writable See Note 2.”
Ok, the path was not created. i created, setup as follows:
sudo mkdir -p /var/lib/bluecherry/recordings
sudo chmod 770 /var/lib/bluecherry/recordings
sudo chown -R bluecherry:bluecherry /var/lib/bluecherry/recordings
The last command failed, because there was no user “bluecherry” (i dont knwo why, it should be…) I created the user, added to the group, and after that the chown command was completed successfully. However when i press the “Save changes” button, the error is still the same. " Specified directory “/var/lib/bluecherry/recordings " exists, but is not writable See Note 2.”
I had the same problem when i installed on a VM server a few days ago. Whats the problem, and what shpuld i do?