Mautic by bitnami cannot find in AWS market place

Your software
My Mautic version is: 4.4.6
My PHP version is:
My Database type and version is:

Your problem
My problem is:
as from many years i am installing mautic on AWS by bitnami packet in aws marketplace
but today when i try to launch new instance and when i search mautic by bitnami it was not there

is the any other way to install mautic on aws

You can use any “install mautic using command line” tutorial.

do u have any video or any steps so that i can watch and do the same install process

i have install mautic from aws bitnami packet i can login through ssh and i can see all packets and everthing working there but i am not able to open in browser through IP or domain name

The Mautic bitnami package is not existing anymore. They discontinued it.

Wow. That is a good day for people who troubleshoot Mautic.

Hi,

here is the official answer from Bitnami why Mautic from Bitnami is no longer on AWS.

Mautic has been deprecated because it depends on the IMAP extension, which is not under active development.

Hello everyone!

Is there any concern about this matter Bitnami refer to? " Mautic has been deprecated because it depends on the IMAP extension, which is not under active development."

Is there no development regarding IMAP extensions?

If this statement from Bitmani not is correct has anyone tried to communicate with Bitnami?

The Bitnami image seemed like a simple and clean install? Has anyone tried the other install images from AWS Marketing?

I’m looking into Mautic as an alternative to the main Marketing cloudservices for our clients.
I’m not that familiar with operating linux so running Mautic on AWS with the Bitnami image did seem like a good solution for many reasons.

Does anyone have any suggestions or can offer help to install and support Mautic on AWS? I’m open for collaboration.

Hi,
if you want to have Mautic installed by Bitnami on AWS, here is the procedure that should be fine:

Step 1: Install on AWS Bitnami LAMP (for Mautic 4.4 version 8.0)

E.g.: bitnami-lampstack-8.0.28-3-r04-linux-debian-11-x86_64-hvm-ebs-nami-cb6afd05-a3b2-4916-a3e6-bccd414f5f21

Here is more about Bitnami Lamp
https://docs.bitnami.com/aws/infrastructure/lamp/get-started/get-started/

Step.2:Download the latest stable version Mautic by executing the following command on your server.

cd /opt/bitnami
sudo su
wget https://github.com/mautic/mautic/releases/download/4.4.7/4.4.7-update.zip

Unzip it to /opt/bitnami/mautic/ directory.

sudo mkdir -p mautic
sudo unzip 4.4.7-update.zip -d mautic

Step 3. Then make the web server user (daemon) as the owner of this directory.

File ownership and permissions Mautic is here:
https://docs.mautic.org/en/troubleshooting/file-ownership-and-permissions

sudo chown -R bitnami:daemon /opt/bitnami/mautic/;
sudo find /opt/bitnami/mautic/ -type d -exec chmod 775 {} \;
sudo find /opt/bitnami/mautic/ -type f -exec chmod 664 {} \;
sudo chown -R daemon:daemon /opt/bitnami/mautic/var/cache /opt/bitnami/mautic/var/logs/ /opt/bitnami/mautic/app/config/;
sudo chown -R daemon:daemon /opt/bitnami/mautic/media/files/ /opt/bitnami/mautic/media/images/ /opt/bitnami/mautic/translations/;
sudo chown root:root /opt/bitnami/mautic/bin;
sudo chown -R bitnami:daemon /opt/bitnami/mautic/bin/console /opt/bitnami/mautic/bin/.htaccess;
sudo chmod +x /opt/bitnami/mautic/bin/console;

Step 4. Create a MariaDB Database and User for Mautic

Bitnami Create a new MariaDB database and user is here:
https://docs.bitnami.com/aws/apps/magento/configuration/create-database-mariadb/

a.Log in to MariaDB console.

    mysql -u root -p
    (password for root is here: /home/bitnami/bitnami_credentials)

b. Create new database bitnami_mautic and user bn_mautic
    CREATE DATABASE bitnami_mautic DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;

    grant all privileges on bitnami_mautic.* TO 'bn_mautic'@'%' identified by 'PASSWORD';

c. Flush privileges table and exit MariaDB console.

    FLUSH PRIVILEGES;
    EXIT;

d. V php.ini (/opt/bitnami/php/etc) I recommend setting:

    upload_max_filesize=100M
    post_max_size=100M
    memory_limit=1024M

Step 5: Create Apache Virtual Host for Mautic

They are already created in Bitnami LAMP, you only need to modify them according to your own server. /opt/bitnami/apache/conf/vhosts

rename to mautic-https-vhost.conf
rename to mautic-vhost.conf

Step 6: Finish Mautic Installation in Web Browser

Type https://mautic.your-domain.com/installer

Follow the instructions here: https://docs.mautic.org/en/setup/how-to-install-mautic/install-mautic-from-package

I hope it helps you.

Regards

@rohaty Thank you very much for the detailed installation description.