diff options
author | Gene Baxter <GenoBob@gmail.com> | 2015-01-02 14:06:57 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-02 14:06:57 +0700 |
commit | 21dd16c0e1bda70142051e14c513c6ad3bc5a031 (patch) | |
tree | 0c291d54f40f150a2ffec7e551e78c8fafbde9d0 /system/ZoneMinder/README.SLACKWARE | |
parent | a3f315595ab14ea4b590404623ae2516200ede20 (diff) | |
download | slackbuilds-21dd16c0e1bda70142051e14c513c6ad3bc5a031.tar.gz |
system/ZoneMinder: Added (video camera security and surveillance).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/ZoneMinder/README.SLACKWARE')
-rw-r--r-- | system/ZoneMinder/README.SLACKWARE | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/system/ZoneMinder/README.SLACKWARE b/system/ZoneMinder/README.SLACKWARE new file mode 100644 index 0000000000..af5a641bdd --- /dev/null +++ b/system/ZoneMinder/README.SLACKWARE @@ -0,0 +1,50 @@ +README.SLACKWARE + +This build uses the mmap method for camera access, as opposed to shared memory. +That means, there is no need to configure shared memory limits any more. +You can revert back to the shm method by removing --enable-mmap from the build. + +To use ZoneMinder, you need to have Apache, PHP and MySQL. + +CONFIGURATION +# Be sure to follow the dircetions in /etc/rc.d/rc.mysqld before you try and + setup your database. + +1) Database setup: +# mysql -u root -p +source /usr/share/ZoneMinder/db/zm_create.sql +use mysql; +grant select,insert,update,delete on zm.* to 'zmuser'@localhost identified by 'zmpass'; +quit; + +Reload the mysql server with "mysqladmin reload -u root -p". + +2) Apache configuration: +Uncomment mod_php at the end of /etc/httpd/httpd.conf. +Add this line to httpd.conf: + Include /etc/zm/zm_apache.conf + +# You may need to chmod +x /etc/rc.d/rc.httpd first +Restart apache with "/etc/rc.d/rc.httpd restart". + +To make ZoneMinder launch on system boot: +/etc/rc.d/rc.local: +================================== +if [ -x /etc/rc.d/rc.zm ]; then + /etc/rc.d/rc.zm start +fi + +/etc/rc.d/rc.local_shutdown: +================================== +if [ -x /etc/rc.d/rc.zm ]; then + /etc/rc.d/rc.zm stop +fi + +Database upgrade files are provided in /usr/share/ZoneMinder/db. + +See http://www.zoneminder.com/wiki/index.php/Documentation#Logging for info +on how to counter the massive amount of syslog spam that ZoneMinder generates. + +The ZoneMinder web interface shall be available at http://hostname/zm/ + +Have fun! |