Stuck on Privacy Page after installation on Ubuntu
Stuck on Privacy Page after installation on Ubuntu
I logged in with admin/admin after installation and all the "accept" button does is reload the Privacy Policy page.
-
- Posts: 1373
- Joined: Sat Aug 31, 2019 7:35 am
- Location: San Diego
Re: Stuck on Privacy Page after installation on Ubuntu
ISTR a checkbox...
Re: Stuck on Privacy Page after installation on Ubuntu
You should not have to log in on initial access to http://ipaddr/zm
Accept or reject the privacy option in the lower right corner and you should go to the Zoneminder Console. Configure from there and remember to set the timezone in Options/System/Timezone
Accept or reject the privacy option in the lower right corner and you should go to the Zoneminder Console. Configure from there and remember to set the timezone in Options/System/Timezone
- bkjaya1952
- Posts: 282
- Joined: Sat Aug 25, 2018 3:24 pm
- Location: Sri Lanka
Re: Stuck on Privacy Page after installation on Ubuntu
To avoid getting Web_Title_Login and stuck on Privacy
Drop the existing database zm and re do the mysql configuring as follows
mysql -e "drop database zm;"
mysql -uroot --password=""< /usr/share/zoneminder/db/zm_create.sql 2>/dev/null
mysql -e "ALTER USER 'zmuser'@localhost IDENTIFIED BY 'zmpass';"
mysql -e "GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'localhost' WITH GRANT OPTION;"
mysql -e "FLUSH PRIVILEGES ;"
In the above codes it is for no mysql password . If you want to have a password , please refer the procedure in the following link .
https://bkjaya.wordpress.com/2020/11/16 ... cal-fossa/
Drop the existing database zm and re do the mysql configuring as follows
mysql -e "drop database zm;"
mysql -uroot --password=""< /usr/share/zoneminder/db/zm_create.sql 2>/dev/null
mysql -e "ALTER USER 'zmuser'@localhost IDENTIFIED BY 'zmpass';"
mysql -e "GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'localhost' WITH GRANT OPTION;"
mysql -e "FLUSH PRIVILEGES ;"
In the above codes it is for no mysql password . If you want to have a password , please refer the procedure in the following link .
https://bkjaya.wordpress.com/2020/11/16 ... cal-fossa/