2015-10-04 00:04:58 +08:00
|
|
|
What's New
|
|
|
|
==========
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
1. The Apache ScriptAlias has been changed from "/cgi-bin/zm/zms" to
|
|
|
|
"/cgi-bin-zm/zms". This has been to done to avoid this bug:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=973067
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
IMPORTANT: ZoneMinder will not update this value during an upgrade. You must
|
|
|
|
manually update ZM_PATH_ZMS yourself under Options. This does not affect
|
|
|
|
new installs.
|
2013-09-16 21:21:37 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
2. The ZoneMinder config file, zm.conf, has been moved under /etc/zm.
|
2013-09-16 21:21:37 +08:00
|
|
|
|
2015-11-22 05:18:43 +08:00
|
|
|
3. Due to the active state of the ZoneMinder project, we now recommend granting
|
|
|
|
ALL permission to the ZoneMinder mysql account. This change must be done
|
|
|
|
manually before ZoneMinder will run. See the installation steps below.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
4. A new permission group called "Groups" has been added. This allows the
|
|
|
|
system administrator to assign "view", "edit", or "none" permission to
|
|
|
|
normal users, without giving them access to the rest of the ZoneMinder
|
|
|
|
system. During an upgrade, existing accounts will default to a Groups
|
|
|
|
permission of "none".
|
2013-10-10 06:41:20 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
5. This package now requires the HTTPS protocol to access the web portal.
|
|
|
|
Requests using HTTP will auto-redirect to HTTPS. See README.https for
|
|
|
|
more information.
|
|
|
|
|
|
|
|
6. This package ships with the new ZoneMinder API enabled.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
New installs
|
|
|
|
============
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
1. This package supports either community-mysql-server or mariadb-server with
|
|
|
|
mariadb being the preferred choice. Unless you are already using MariaDB or
|
|
|
|
Mysql server, you need to ensure that the server is configured to start
|
|
|
|
during boot and properly secured by running:
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
sudo yum install mariadb-server
|
|
|
|
sudo systemctl enable mariadb
|
|
|
|
sudo systemctl start mariadb.service
|
|
|
|
mysql_secure_installation
|
|
|
|
|
|
|
|
2. Assuming the database is local and using the password for the root account
|
|
|
|
set during the previous step, you will need to create the ZoneMinder
|
|
|
|
database and configure a database account for ZoneMinder to use:
|
|
|
|
|
|
|
|
mysql -u root -p < /usr/share/zoneminder/db/zm_create.sql
|
2013-09-16 05:33:09 +08:00
|
|
|
mysql -u root -p
|
2015-11-22 05:18:43 +08:00
|
|
|
mysql> grant all
|
2015-11-18 02:20:51 +08:00
|
|
|
on zm.* to 'zmuser'@localhost identified by 'zmpass';
|
|
|
|
mysql> exit;
|
2015-10-04 00:04:58 +08:00
|
|
|
mysqladmin -u root -p reload
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
The database account credentials, zmuser/zmpass, are arbitrary. Set them to
|
|
|
|
anything that suits your envinroment.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
3. If you have chosen to change the zoneminder database account credentials to
|
|
|
|
something other than zmuser/zmpass, you must now edit /etc/zm/zm.conf.
|
|
|
|
Change ZM_DB_USER and ZM_DB_PASS to the values you created in the previous
|
|
|
|
step.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-11-22 05:18:43 +08:00
|
|
|
Additionally, you must also edit
|
|
|
|
/usr/share/zoneminder/www/api/app/Config/database.php in a similar manner.
|
|
|
|
Scroll down and change login and password to the values you created in the
|
|
|
|
previous step.
|
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
4. Edit /etc/php.ini, uncomment the date.timezone line, and add your local
|
|
|
|
timezone. PHP will complain loudly if this is not set, or if it is set
|
|
|
|
incorrectly, and these complaints will show up in the zoneminder logging
|
|
|
|
system as errors.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2013-09-16 21:21:37 +08:00
|
|
|
If you are not sure of the proper timezone specification to use, look at
|
|
|
|
http://php.net/date.timezone
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
5. Disable SELinux
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
We currently do not have the resources to create and maintain an accurate
|
|
|
|
SELinux policy for ZoneMinder on Fedora. We will gladly accept pull
|
|
|
|
reqeusts from anyone who wishes to do the work. In the meantime, SELinux
|
|
|
|
will need to be disabled or put into permissive mode.
|
|
|
|
|
|
|
|
To immediately disbale SELinux for the current seesion, issue the following
|
|
|
|
from the command line:
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
sudo setenforce 0
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
To permanently disable SELinux, edit /etc/selinux/config and change the
|
|
|
|
SELINUX line from "enforcing" to "disabled". This change will take
|
|
|
|
effect after a reboot.
|
2013-09-29 04:18:45 +08:00
|
|
|
|
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
6. Now start the web server:
|
2013-09-29 04:18:45 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
sudo systemctl enable httpd
|
|
|
|
sudo systemctl start httpd
|
2013-09-29 04:18:45 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
7. Now start zoneminder:
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
sudo systemctl enable zoneminder
|
|
|
|
sudo systemctl start zoneminder
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
Upgrades
|
|
|
|
========
|
2013-09-29 04:18:45 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
1. Verify /etc/zm/zm.conf.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
If zm.conf was manually edited before running the upgrade, the installation
|
|
|
|
may not overwrite it. In this case, it will create the file
|
|
|
|
/etc/zm/zm.conf.rpmnew.
|
2014-10-13 04:54:54 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
For example, this will happen if you are using database account credentials
|
|
|
|
other than zmuser/zmpass.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
Compare /etc/zm/zm.conf to /etc/zm/zm.conf.rpmnew. Verify that zm.conf
|
|
|
|
contains any new config settings that may be in zm.conf.rpmnew.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-11-22 05:18:43 +08:00
|
|
|
Additionally, you must also edit
|
|
|
|
/usr/share/zoneminder/www/api/app/Config/database.php in a similar manner.
|
|
|
|
Scroll down and change login and password to the values you used
|
|
|
|
previsouly.
|
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
2. Verify permissions of the zmuser account.
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
Over time, the database account permissions required for normal operation
|
2015-11-22 05:18:43 +08:00
|
|
|
have increased. Verify the zmuser database account has been granted all
|
|
|
|
permission to the ZoneMinder database:
|
2013-09-16 05:33:09 +08:00
|
|
|
|
2013-10-06 08:41:28 +08:00
|
|
|
mysql -u root -p
|
2015-10-04 00:04:58 +08:00
|
|
|
mysql> show grants for zmuser@localhost;
|
|
|
|
mysql> exit;
|
2013-10-06 08:41:28 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
See step 2 of the Installation section to add missing permissions.
|
2013-10-06 08:41:28 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
3. Verify the ZoneMinder Apache configuration file in the folder
|
|
|
|
/etc/httpd/conf.d. You will have a file called "zoneminder.conf" and there
|
|
|
|
may also be a file called "zoneminder.conf.rpmnew". If the rpmnew file
|
|
|
|
exists, inspect it and merge anything new in that file with zoneminder.conf.
|
|
|
|
|
|
|
|
4. Upgrade the database before starting ZoneMinder.
|
|
|
|
|
|
|
|
Most upgrades can be performed by executing the following command:
|
2013-10-06 08:41:28 +08:00
|
|
|
|
2015-10-04 00:04:58 +08:00
|
|
|
sudo zmupdate.pl
|
|
|
|
|
|
|
|
Recent versions of ZoneMinder don't require any parameters added to the
|
|
|
|
zmupdate command. However, if ZoneMinder complains, you may need to call
|
|
|
|
zmupdate in the following manner:
|
2013-10-06 08:41:28 +08:00
|
|
|
|
2013-10-10 07:35:39 +08:00
|
|
|
sudo zmupdate.pl --user=root --pass=<mysql_root_pwd> --version=<from version>
|
2015-10-04 00:04:58 +08:00
|
|
|
|
|
|
|
5. Now start zoneminder:
|
|
|
|
|
|
|
|
sudo systemctl start zoneminder
|
|
|
|
|