Skip to content

Example for Ubuntu 16.04 LTS : upgrade from MR 4.3.4 to 5.3.3 Zip Method

MartinC edited this page Mar 27, 2020 · 1 revision

Tested on configuration:

  • PHP 7.0.33-20+ubuntu16.04.1+deb.sury.org+1
  • MYSQL 5.7.29-0ubuntu0.16.04.1
  • Apache/2.4.41 (Ubuntu)

## pre-requirements:

PHP 7.4:

1.follow https://www.cloudbooklet.com/upgrade-php-version-to-php-7-4-on-ubuntu/

if LDAP require just install

sudo apt install php7.4-LDAP

Apache:

  • #sudo a2dismod php7.0
  • #sudo a2enmod php7.4
  • #systemctl restart apache2

MunkiReport Migration based on upper steps:

  • 1.touch /path/to/munkireport/storage/framework/down
  • 2.Rename old munkireport to munkireport_bak and unzip new 5.3.3 zip into munkireport folder
  • 3.mysqldump -u root -p --databases munkireport > /tmp/munkireport_20181216.bak
  • 4.Make a copy of .env and composer.local.json
  • 5.run from munkireportfolder # php database/migrate.php
  • 6.rm /path/to/munkireport/storage/framework/down
  • 7.Clean Browser Cache
Clone this wiki locally