Difference between revisions of "Ubuntu Server 19.04 Zoneminder 1.32.3"

From ZoneMinder Wiki
Jump to navigationJump to search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''This procedure is obsolete. Please see:
'''While this procedure still works a version with full support including MP4 can be found here: https://wiki.zoneminder.com/Ubuntu_Server_19.04_Zoneminder_1.32.3_(with_mp4_support)'''
http://www.zoneminder.com/wiki/index.php/Ubuntu#Guides_for_Ubuntu_Server






The Zoneminder ppa contains version 1.28.107 as of 15OCT15
'''Ubuntu Server 19.04 with Zoneminder 1.32.2'''


Zoneminder 1.28.1 on Ubuntu 14.04. Also works on Ubuntu 14.10 running init.
29MAR19 This was done with Ubuntu 19.04 Beta which contains Zoneminder 1.32.3. This is a preliminary procedure and may not work as changes are made to the release.


I did this install on a 64 BIT server but it should work on 32 BIT. As of 20OCT14 I have tested this with a local USB camera and a remote h.264 camera with Ffmpeg and Libvlc.
'''Note-30MAR19 - The MP4 recording and playback does not work as there are missing libraries. If you install this switch to saving jpeg's.'''


If you install from CD install Ubuntu Server, OpenSSH Server, and LAMP Server (LAMP installs Apache2, PHP, and MySQL server)
Install Ubuntu Server from the Ubuntu Server Live install.


If you use the minimum ISO CD install Basic Server, OpenSSH Server, and LAMP Server (LAMP installs Apache2, PHP, and MySQL server)
Note: If you want to remove the cloud services see: https://nucco.org/2018/05/ubuntu-18-04-chronicles-removing-cloud-init.html


Log in then become root:
My install did not allow the time zone to be set in the install. To set the time zone:


  sudo su
  nano /etc/timezone


If you used the server install CD
Change the UTC to your local area and time zone such as America/New_York
apt-get update
apt-get upgrade
apt-get dist-upgrade


Optional: Set static IP address
Ctrl+o Enter to save


nano /etc/network/interfaces
CTRL+x to exit


Make changes similar to this:
Install ntp and ntpdate


  auto eth0
  apt install ntp ntpdate
iface eth0 inet static
  address 192.168.1.10
  netmask 255.255.255.0
  gateway 192.168.1.1
  dns-nameservers 192.168.1.1


Note: for Ubuntu 14.04 the resolv.conf is dynamically assigned. The "dns-servers" entry in the interfaces file will set the DNS Multiple DNS server entries can be used.
Copy your zoneinfo file as shown. Use your time zone:


Reboot server
cp /usr/share/zoneinfo/America/New_York /etc/localtime


Log in and become root
Optional: to disable auto updates edit:


  sudo su
  nano /etc/apt/apt.conf.d/20auto-upgrades


Suggested changes to MySQL
Change the "1" to "0"
 
For most of you Zoneminder will run just fine with the default MySQL settings. There are a couple of settings that may, in time, provide beneficial especially if you have a number of cameras and many events with a lot of files. One setting I recommend is the "innodb_file_per_table" This will be a default setting in MySQL 5.6 but should be added in MySQL 5.5 which comes with Ubuntu 14.04. A description can be found here: http://dev.mysql.com/doc/refman/5.5/en/innodb-multiple-tablespaces.html
 
To add "innodb_file_per_table" edit the my.cnf file:
 
nano /etc/mysql/my.cnf
 
Under [mysqld] add
 
innodb_file_per_table


Ctrl+o Enter to save
Ctrl+o Enter to save
Line 60: Line 41:
CTRL+x to exit
CTRL+x to exit


Restart MySQL
Restart your server.
 
service mysql restart
 
As you add cameras to your system and the events build up you may need to increase the size of the "innodb_buffer_pool_size" when this setting runs out of space your system may act like it is out of disk space. One way to check this is to install mysqltuner and run it from the command line. When the results are shown you can edit the my.cnf file and change the buffer size. The default "innodb_buffer_pool_size" is 128M. In the ZM forum I have found a recommended setting of 256M. My production server required a setting greater than 410M. Install and run mysqltuner to determine the recommended size for your system. Be sure to restart MySQL after making changes.


CGI is not enabled in Ubuntu 14.04 by default. Enable it this way:
Install Apache2, Mariadb and PHP (I use Mariadb because of some password length issues with the newer version of MySQL)


  a2enmod cgi
  apt install apache2 php mariadb-server php-mysql libapache2-mod-php7.2


Restart Apache
Next secure Mariadb server by entering requested information.


  /etc/init.d/apache2 force-reload
  mysql_secure_installation
 
or
 
service apache2 restart
 
Add Repository
 
apt-get install software-properties-common python-software-properties
add-apt-repository ppa:iconnor/zoneminder
apt-get update


Install Zoneminder
Install Zoneminder


  apt-get install zoneminder
  apt install zoneminder
 
Note: a couple of package configurations will open up. These are to configure Nullmailer. You can just OK them and come back to configure them later.
 
You will need to install "extra" VLC components torun Libvlc (verified 20OCT14)
 
apt-get install libvlc-dev libvlccore-dev vlc


Add delay to allow MySQL to start before Zoneminder
The database is not created automatically. Create the database with


  nano /etc/init.d/zoneminder
  mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql


Add sleep 15 as shown:
mysql -uroot -p -e "grant all on zm.* to 'zmuser'@localhost identified by 'zmpass';"


  start() {
  mysqladmin -uroot -p reload
      sleep 15
      echo -n "Starting $prog: "


Ctrl+o Enter to save
Fix permissions


CTRL+x to exit
chmod 740 /etc/zm/zm.conf


Create a symbolic link to zoneminder's apache config file. Since Ubuntu includes tools to enable/disable conf files,
  chown root:www-data /etc/zm/zm.conf
do so the 'Ubuntu way'


  ln -s /etc/zm/apache.conf /etc/apache2/conf-available/zoneminder.conf
  chown -R www-data:www-data /usr/share/zoneminder/


Now, enable the zoneminder apache config file:
Enable Zoneminder service


  a2enconf zoneminder
  systemctl enable zoneminder.service


 
Add a user for local cameras
Create a new user


  adduser www-data video
  adduser www-data video


Restart Apache
Enable Apache Features


  /etc/init.d/apache2 force-reload
  a2enmod cgi


or
  a2enmod rewrite
 
  service apache2 restart
 
 
Install Cambozola (needed if you use Internet Explorer)


a2enconf zoneminder


cd /usr/src && wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz
Add timezone to PHP


  tar -xzvf cambozola-latest.tar.gz
  nano /etc/php/7.2/apache2/php.ini


replace 935 in the next line with cambozola version downloaded
Search for [Date] (Ctrl + w then type Date and press Enter) and make changes as follows for your time zone


cp cambozola-0.935/dist/cambozola.jar /usr/share/zoneminder
[Date]
 
; Defines the default timezone used by the date functions
You should now be able to access the web server using https://servername
; http://php.net/date.timezone
 
date.timezone = America/New_York
NTP Daily Sync
 
nano /etc/cron.daily/ntpdate
 
Copy the following into nano
 
!/bin/sh
ntpdate ntp.ubuntu.com


Ctrl+o Enter to save
Ctrl+o Enter to save
Line 157: Line 102:
CTRL+x to exit
CTRL+x to exit


chmod 755 /etc/cron.daily/ntpdate
Start Zoneminder


Open Zoneminder in web browser
service zoneminder start


http://serverip/zm
Restart Apache
 
Click Options
 
Uncheck: Check with zoneminder.com for updated versions (?) click Save


Click Images tab
service apache2 reload


check Is the (optional) cambozola java streaming client installed (?) Click Save
Zoneminder should work! Open Zoneminder in a web browser (http://server-ip/zm).

Latest revision as of 13:06, 26 May 2019

While this procedure still works a version with full support including MP4 can be found here: https://wiki.zoneminder.com/Ubuntu_Server_19.04_Zoneminder_1.32.3_(with_mp4_support)


Ubuntu Server 19.04 with Zoneminder 1.32.2

29MAR19 This was done with Ubuntu 19.04 Beta which contains Zoneminder 1.32.3. This is a preliminary procedure and may not work as changes are made to the release.

Note-30MAR19 - The MP4 recording and playback does not work as there are missing libraries. If you install this switch to saving jpeg's.

Install Ubuntu Server from the Ubuntu Server Live install.

Note: If you want to remove the cloud services see: https://nucco.org/2018/05/ubuntu-18-04-chronicles-removing-cloud-init.html

My install did not allow the time zone to be set in the install. To set the time zone:

nano /etc/timezone

Change the UTC to your local area and time zone such as America/New_York

Ctrl+o Enter to save

CTRL+x to exit

Install ntp and ntpdate

apt install ntp ntpdate

Copy your zoneinfo file as shown. Use your time zone:

cp /usr/share/zoneinfo/America/New_York /etc/localtime 

Optional: to disable auto updates edit:

nano /etc/apt/apt.conf.d/20auto-upgrades

Change the "1" to "0"

Ctrl+o Enter to save

CTRL+x to exit

Restart your server.

Install Apache2, Mariadb and PHP (I use Mariadb because of some password length issues with the newer version of MySQL)

apt install apache2 php mariadb-server php-mysql libapache2-mod-php7.2

Next secure Mariadb server by entering requested information.

mysql_secure_installation

Install Zoneminder

apt install zoneminder

The database is not created automatically. Create the database with

mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql
mysql -uroot -p -e "grant all on zm.* to 'zmuser'@localhost identified by 'zmpass';"
mysqladmin -uroot -p reload

Fix permissions

chmod 740 /etc/zm/zm.conf
chown root:www-data /etc/zm/zm.conf
chown -R www-data:www-data /usr/share/zoneminder/

Enable Zoneminder service

systemctl enable zoneminder.service

Add a user for local cameras

adduser www-data video

Enable Apache Features

a2enmod cgi
a2enmod rewrite
a2enconf zoneminder

Add timezone to PHP

nano /etc/php/7.2/apache2/php.ini

Search for [Date] (Ctrl + w then type Date and press Enter) and make changes as follows for your time zone

[Date]

Defines the default timezone used by the date functions
http://php.net/date.timezone

date.timezone = America/New_York

Ctrl+o Enter to save

CTRL+x to exit

Start Zoneminder

service zoneminder start

Restart Apache

service apache2 reload

Zoneminder should work! Open Zoneminder in a web browser (http://server-ip/zm).