Your software
My Mautic version is: 5.2.2.
My PHP version is: 8.3
My Database type and version is:10.11
Hello, i tried to to move Mautic 5.2.2. from Ubuntu 22.04 to a new fresh installed Ubuntu 24.04 server. But at the new server mautic isn’t reachable an i need your help for a solution:
(I new test installation i made, is reachable, so the error must be in the database or in a config of the restored mautic, rights problems or whatelse)
I copied the full mautic directory to the new server in that way, that i zipped it at the old server, transfered over ssh to my office, uploaded to the new server over ssh and entziped it.
I imported the database.
My first thought ist, that the database import was not successful. Some questions:
- I created a new database for mautic in that way.
mysql -u root
CREATE DATABASE mautic DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE USER ‘mautic’@‘localhost’ IDENTIFIED BY ‘databasepassword’;
GRANT ALL PRIVILEGES ON mautic.* TO ‘mautic’@‘localhost’;
FLUSH PRIVILEGES;
and inported my backup of the database in that way:
mysql -u root -p mautic < mautic-database-20250131-113938.sql
Password was asked at import: i took the root password of the server.
Was my restore action right or was there an error?
What can i do to find the issue?