zoneminder/distros/redhat
Andrew Bauer 4ac699c167 Merge pull request #594 from ndobbs/feature-ndobbs_selinux_rhel6_support
updated local_zoneminder type extension file
2014-11-24 17:46:55 -06:00
..
archive Redhat and Fedora distro folder housekeeping 2014-10-05 09:54:29 -05:00
CMakeLists.txt cmake support files for redhat/centos distros 2013-10-19 13:50:59 -05:00
README.CentOS Update README.CentOS 2014-09-11 10:53:11 -05:00
cambozola.sh cmake support files for redhat/centos distros 2013-10-19 13:50:59 -05:00
jscalendar.sh Cmake support files for fedora distro 2013-10-19 08:49:47 -05:00
local_zoneminder.te updated local_zoneminder type extension file to support ZM running on CentOS/RHEL 6.x in SElinux ENFORCING mode 2014-11-24 17:36:47 -05:00
redalert.wav Move redhat folder to a subfolder called distros 2013-09-15 16:33:09 -05:00
zm-init Move redhat folder to a subfolder called distros 2013-09-15 16:33:09 -05:00
zm-logrotate_d Move redhat folder to a subfolder called distros 2013-09-15 16:33:09 -05:00
zoneminder-1.28.0-defaults.patch Redhat and Fedora distro folder housekeeping 2014-10-05 09:54:29 -05:00
zoneminder.cmake.el6.spec Update zoneminder.cmake.el6.spec 2014-11-24 15:41:09 -06:00
zoneminder.conf Move redhat folder to a subfolder called distros 2013-09-15 16:33:09 -05:00
zoneminder.in Update zoneminder.in 2013-12-14 09:14:44 -06:00

README.CentOS

================================================================================
				NEW INSTALLS
================================================================================

1. Unless you are already using MySQL server, you need to ensure that
   the server is confired to start during boot and properly secured
   by running:

     sudo service mysqld start
     /usr/bin/mysql_secure_installation
     sudo chkconfig mysqld on

2. Using the password for the root account set during the previous step, you
   will need to create the ZoneMinder database:

     mysql -uroot -p
	mysql> create database zm;
	mysql> grant select,insert,update,delete,lock tables,alter on zm.* to
               'zmuser'@localhost identified by 'zmpass';
	mysql> exit;
     mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql
     mysqladmin -uroot -p reload

3. If you have chosen to change the zoneminder mysql credentials to something
   other than zmuser/zmpass then you must now edit /etc/zm.conf. Change
   ZM_DB_USER and ZM_DB_PASS to the values you created in step 2.

4. IMPORTANT: Edit /etc/php.ini and put in the appropriate timezone for
   date.timezone!

5. The ZoneMinder web interface is disabled by default, you will need
   to edit this file to enable it:

     /etc/httpd/conf.d/zoneminder.conf

   HINT: Most users will want to simply delete the line that says
   "Deny from all".

6. Configure the web server to start automatically:

     sudo chkconfig httpd on
     sudo service httpd start

7. This package will automatically configure and install an SELinux policy
   called local_zoneminder. A copy of this policy is in the documentation
   folder.
   
   Unfortunately, this has not resolved all the SELinux issues so
   most will want to disable SELinux permanently by editing the following:
   
   /etc/selinux/conf
   
   Change SELINUX line from "enforcing" to "disabled". This change will not
   take effect until a reboot, however. To avoid a reboot, execute the
   following from the commandline:
   
   sudo setenforce 0

8. Finally, you may start the ZoneMinder service:

     sudo service zoneminder start

   Then point your web browser to http://<machine name or ip>/zm

================================================================================
				UPGRADES
================================================================================

1. Add additional permissions to the zmuser account:

     mysql -u root -p
     grant lock tables,alter on zm.* to
     'zmuser'@localhost identified by 'zmpass';

   Since this is an upgrade, the assumption is that the zmuser account exists
   and already has select, insert, update, and delete permission.
   
2. If you have previsouly changed the zoneminder mysql credentials to something
   other than zmuser/zmpass then you must now edit /etc/zm.conf. Change
   ZM_DB_USER and ZM_DB_PASS to their appropriate values.
   
3. You will need to upgrade the ZoneMinder database as described in the manual.
   Only if step 1 was succesfully applied, may you run zmupdate like so:
   
    sudo zmupdate.pl --version=<from version>
   
   
   If unsure then run it this way:

   sudo zmupdate.pl --user=root --pass=<mysql_root_pwd> --version=<from version>