Results 1 to 3 of 3

Thread: Zoneminder-Docker with Mysql 8 on Ubuntu 19.10

  1. #1
    Join Date
    Jul 2015
    Beans
    10

    Zoneminder-Docker with Mysql 8 on Ubuntu 19.10

    In this tutorial ,we are going to use “Docker: Enterprise Container Platform” (docker.io) on Ubuntu 19.10.

    First

    Installation of Docker on Ubuntu 19.10


    On the Ubuntu terminal

    Code:
    sudo apt install docker.io
    Then use , bkjaya1952/docker-zoneminder-master-mysql8 Docker Repository to make a container .




    Figure:- bkjaya1952/docker-zoneminder-master-mysql8:1.33.16 Repository at dockerhub



    Code:
    sudo docker create -t -p 8080:80 --shm-size=4096m --name zm --privileged=true bkjaya1952/docker-zoneminder-master-mysql8:latest
     
    sudo docker start zm

    You will have to configure the running zm container for mysql 8 ,zm data base and edit the timezone only for the first run .


    Code:
    sudo docker exec -t -i zm /bin/bash
    (Now you will be with in the zm container.
    Make changes as follows)

    Code:
    mysql -uroot -p < /usr/share/zoneminder/db/zm_create.sql
    
     
    mysql
    
     
    CREATE USER 'zmuser'@localhost IDENTIFIED WITH mysql_native_password BY 'zmpass';
    
     
    GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'localhost' WITH GRANT OPTION;
    
     
    FLUSH PRIVILEGES ;
    
     
    quit
    
     
    mysqladmin -uroot -p reload


    Code:
    dpkg-reconfigure tzdata

    Then edit your timezone


    Code:
    exit

    Code:
    sudo docker restart zm
    To get zoneminder panel on web browser

    http://localhost:8080/zm/



    ( The procedure of composing an image can be obtained from the following links
    https://bkjaya.wordpress.com/2020/01...mysql-8-msmtp/ )
    Last edited by bkjaya1952; February 19th, 2020 at 04:53 AM.

  2. #2
    Join Date
    Jul 2015
    Beans
    10

    Re: Zoneminder-Docker with Mysql 8 on Ubuntu 19.10

    Today (23- 01- 2020 ), Mr. Isaac Connor has published the first successful Zoneminder-master-eoan package for Ubuntu 19.10. in his website .

    The Installation procedure is explained in the following web link


    HOW TO INSTALL ZONEMINDER, v1.34.0. ON UBUNTU 19.10 (eoan), with mysql 8

  3. #3
    Join Date
    Jul 2020
    Beans
    4

    Re: Zoneminder-Docker with Mysql 8 on Ubuntu 19.10

    muy bueno, me sirven de mucho todos los tutoriales, ya que estoy intentando instalar todo en una maquina

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •