zoneminder/distros/ubuntu1204
Andrew Bauer 0d9f330356 call zmcamtool during postinst (#2021) 2017-12-10 14:14:39 -05:00
..
conf/apache2 Rremove Index from options to prevent directory listings 2016-11-08 09:30:24 -05:00
examples remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
patches change to quilt frmo native. Remove patches. We are upstream. 2017-06-01 12:41:10 -04:00
source change to quilt frmo native. Remove patches. We are upstream. 2017-06-01 12:41:10 -04:00
NEWS put back empty files 2017-06-02 20:42:55 -04:00
README.Debian remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
TODO.Debian remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
changelog put back empty files 2017-06-02 20:42:55 -04:00
clean remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
compat This is a copy of the debian dir, the main change is to the Changelog so that the package gets built for precise 2013-10-03 13:53:37 -04:00
control remove boost dependency. 2017-12-04 22:59:50 -05:00
copyright remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
gbp.conf remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
libzoneminder-perl.install remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
rules Don't create symlinks in ZoneMinder webroot (#1923) 2017-07-21 08:18:13 -04:00
watch remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder-doc.doc-base remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder-doc.install remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder-doc.links remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.apache2 remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.bug-presubj remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.dirs add /etc/zm and /etc/zm/conf.d to install dirs 2017-06-20 09:41:35 -04:00
zoneminder.docs remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.examples remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.init Update zoneminder.init 2016-07-05 11:35:08 -05:00
zoneminder.install include conf.d folder contents in debian packaging (#1934) 2017-06-26 14:44:33 -04:00
zoneminder.links Don't create symlinks in ZoneMinder webroot (#1923) 2017-07-21 08:18:13 -04:00
zoneminder.linktrees remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.lintian-overrides remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.logrotate change default logrotate policy to rotate daily and compress 2017-05-23 14:51:09 -04:00
zoneminder.maintscript remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.manpages remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.postinst call zmcamtool during postinst (#2021) 2017-12-10 14:14:39 -05:00
zoneminder.postrm remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.preinst remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.service remove autotools builds, replace them with cmake versions 2016-04-06 08:43:20 -04:00
zoneminder.tmpfile Due to switch to apc for caching in api, don't need the tmp dirs 2017-05-05 09:45:36 -04:00

README.Debian

Zoneminder for Debian
---------------------

Initializing database
---------------------

    pv /usr/share/zoneminder/db/zm_create.sql | sudo mysql --defaults-file=/etc/mysql/debian.cnf
OR
    cat /usr/share/zoneminder/db/zm_create.sql | sudo mysql --defaults-file=/etc/mysql/debian.cnf

    echo 'grant lock tables,alter,create,select,insert,update,delete on zm.* to 'zmuser'@localhost identified by "zmpass";'\
    | sudo mysql --defaults-file=/etc/mysql/debian.cnf mysql

Hint: generate secure password with `pwgen` and update "/etc/zm/zm.conf"
accordingly.

The following command can help to ensure that zoneminder can read its
configuration file:

    chgrp -c www-data /etc/zm/zm.conf


Upgrading database
------------------

Prior to 1.28.1 database upgrade was performed automatically.
"zoneminder" service will refuse to start with outdated database.

Assuming that database is on "localhost" then the following command can be
used to upgrade "zm" database:

    zmupdate.pl

Additional permissions may be required to perform upgrade:

    echo 'grant lock tables, create, alter on zm.* to 'zmuser'@localhost identified by "zmpass";'\
    | sudo mysql --defaults-file=/etc/mysql/debian.cnf mysql

The following command prints the current version of zoneminder database:

    echo 'select Value from Config where Name = "ZM_DYN_CURR_VERSION";' \
    | sudo mysql --defaults-file=/etc/mysql/debian.cnf --skip-column-names zm


Enabling service
----------------

By default Zoneminder service is not starting automatically and need to be
manually activated once database is configured:

On systemd:

    sudo systemctl enable zoneminder.service

On SysV:

    sudo update-rc.d zoneminder enable


Web server set-up
-----------------

There are few manual steps to get the web interface working:

## Apache2

Apache can be configured as folder "/zm" using sample .conf:

    sudo a2enconf zoneminder

Alternatively Apache web site configuration template can be used to setup
zoneminder as "http://zoneminder":

    sudo cp -v /usr/share/doc/zoneminder/examples/apache.conf /etc/apache2/sites-available/
    sudo a2ensite zoneminder.conf

Common configuration steps for Apache2:

    sudo a2enmod cgi
    sudo service apache2 reload


## nginx / fcgiwrap

Nginx needs "php5-fpm" package to support PHP and "fcgiwrap" package
for binary "cgi-bin" applications:

    sudo apt-get install php5-fpm fcgiwrap

To enable a URL alias that makes Zoneminder available from

    http://yourserver/zm

the following line is to be added to "server" section of a web site
configuration:

    include /usr/share/doc/zoneminder/examples/nginx.conf;

For "default" web site it would be sufficient to include the above
statement to the file

    /etc/nginx/sites-enabled/default

To avoid problems with feeds from multiple cameras "fcgiwrap" should be
configured to start at least as many processes as there are cameras.
It can be done by adjusting DAEMON_OPTS in "/etc/default/fcgiwrap".
Systemd users may be affected by the following bug:

    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=792705


## Note:

When Zoneminder web site is running it may be necessary to set
Options/Paths/PATH_ZMS to "/zm/cgi-bin/nph-zms" or according to chosen web
site configuration.


Changing the location for images and events
-------------------------------------------

Zoneminder, in its upstream form, stores data in /usr/share/zoneminder/.  This
package modifies that by changing /usr/share/zoneminder/images and
/usr/share/zoneminder/events to symlinks to directories under
/var/cache/zoneminder.

There are numerous places these could be put and ways to do it.  But, at the
moment, if you change this, an upgrade will fail with a warning about these
locations having changed (the reason for this was that previously, an  upgrade
would silently revert the changes and cause event loss - refer
bug #608793).

If you do want to change the location, here are a couple of suggestions.
(thanks to vagrant@freegeek.org):

These lines in fstab could allow you to bind-mount an alternate location

         /dev/sdX1 /otherdrive ext3 defaults 0 2
         /otherdrive/zoneminder/images /var/cache/zoneminder/images bind defaults 0 2
         /otherdrive/zoneminder/events /var/cache/zoneminder/events bind defaults 0 2

        or if you have a separate partition for each:

         /dev/sdX1 /var/cache/zoneminder/images ext3 defaults 0 2
         /dev/sdX2 /var/cache/zoneminder/events ext3 defaults 0 2

 -- Peter Howard <pjh@northern-ridge.com.au>, Sun, 16 Jan 2010 01:35:51 +1100

Access to /dev/video*
---------------------

For cameras which require access to /dev/video*, zoneminder may need the
www-data user added to the video group in order to see those cameras:

  adduser www-data video

Note that all web applications running on the zoneminder server will then have
access to all video devices on the system.

 -- Vagrant Cascadian <vagrant@debian.org>  Sun, 27 Mar 2011 13:06:56 -0700