Improve installation instructions for Debian 11 (bullseye) #3467

This commit is contained in:
anon8675309
2022-04-24 21:16:41 -05:00
parent 0cb15d3418
commit 3236a50d9f

View File

@@ -48,9 +48,9 @@ Switch into root user and create database and database user
sudo su
mariadb
CREATE DATABASE zm;
CREATE user
grant permission
flush privilege
CREATE USER zmuser@localhost IDENTIFIED BY 'zmpass';
GRANT ALL ON zm.* TO zmuser@localhost;
FLUSH PRIVILEGES;
exit;
exit
@@ -83,6 +83,7 @@ To make sure zoneminder can read the configuration file, run the following comma
::
sudo a2enconf zoneminder
sudo systemctl reload apache2.service
sudo systemctl reload zoneminder.service
sudo systemctl restart zoneminder.service
sudo systemctl status zoneminder.service