Difference between revisions of "Ubuntu Server 19.04 Zoneminder 1.32.3"

From ZoneMinder Wiki
Jump to navigationJump to search
m
 
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Zoneminder 1.28.0 on Ubuntu 14.04
'''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)'''


I did this install on a 64 BIT server but it should work on 32 BIT


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


If you use the minimum ISO CD install Basic Server, OpenSSH Server, and LAMP Server (LAMP installs Apache2, PHP, and MySQL server)
'''Ubuntu Server 19.04 with Zoneminder 1.32.2'''


Log in then become root:
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.


sudo su
'''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 used the server install CD
Install Ubuntu Server from the Ubuntu Server Live install.
apt-get update
apt-get upgrade
apt-get dist-upgrade


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


nano /etc/network/interfaces
My install did not allow the time zone to be set in the install. To set the time zone:


Make changes similar to this:
nano /etc/timezone


auto eth0
Change the UTC to your local area and time zone such as America/New_York
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.
Ctrl+o Enter to save
 
CTRL+x to exit


Reboot server
Install ntp and ntpdate


CGI is not enabled in Ubuntu 14.04 by default. Enable it this way:
apt install ntp ntpdate


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


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


/etc/init.d/apache2 force-reload
Optional: to disable auto updates edit:


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


service apache2 restart
Change the "1" to "0"


Add Repository
Ctrl+o Enter to save


apt-get install python-software-properties
CTRL+x to exit
add-apt-repository ppa:iconnor/zoneminder
apt-get update


Install Zoneminder
Restart your server.


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


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.
apt install apache2 php mariadb-server php-mysql libapache2-mod-php7.2


You may need to install "extra" VLC components (I will check this and edit as needed)
Next secure Mariadb server by entering requested information.


  apt-get install libvlc-dev libvlccore-dev vlc
  mysql_secure_installation


Add delay to allow MySQL to start before Zoneminder
Install Zoneminder


  nano /etc/init.d/zoneminder
  apt install zoneminder


Add sleep 15 as shown:
The database is not created automatically. Create the database with


  start() {
  mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql
        sleep 15
echo -n "Starting $prog: "


Ctrl+o Enter to save
mysql -uroot -p -e "grant all on zm.* to 'zmuser'@localhost identified by 'zmpass';"


CTRL+x to exit
mysqladmin -uroot -p reload


Create a directory in apache2
Fix permissions


  mkdir /etc/apache2/conf.d
  chmod 740 /etc/zm/zm.conf


Create two symbolic links
chown root:www-data /etc/zm/zm.conf


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


ln -s /etc/zm/apache.conf /etc/apache2/conf-enabled/zoneminder.conf
Enable Zoneminder service


systemctl enable zoneminder.service


Create a new user
Add a user for local cameras


  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
  a2enconf zoneminder


Add timezone to PHP


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


Install Cambozola (needed if you use Internet Explorer)
Search for [Date] (Ctrl + w then type Date and press Enter) and make changes as follows for your time zone


 
[Date]
cd /usr/src && wget http://www.andywilcock.com/code/cambozola/cambozola-latest.tar.gz
; Defines the default timezone used by the date functions
 
; http://php.net/date.timezone
tar -xzvf cambozola-latest.tar.gz
date.timezone = America/New_York
 
replace 935 with cambozola version downloaded
 
cp cambozola-0.935/dist/cambozola.jar /usr/share/zoneminder
 
You should now be able to access the web server using https://servername
 
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 125: 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).