Open-source marketing automation does not have to mean giving up your data to a SaaS vendor. Mautic puts email campaigns, contact tracking, and lead nurturing under your own roof. Running it on Ubuntu 24.04 takes more effort than signing into HubSpot, but the reward is full control over your stack, your costs, and your customer data. You decide when to update, how to scale, and where your information lives.

Before you start, point a domain at your server and make sure your Ubuntu 24.04 instance has at least 2 GB of RAM. Mautic is not lightweight; PHP will consume memory when it rebuilds large segments or processes campaign logic. If you plan to send to thousands of contacts, 4 GB makes the experience far smoother.

Build the LEMP Foundation

Mautic expects a LEMP stack: Nginx, MySQL, and PHP. On Ubuntu 24.04, the default PHP version is 8.3, which works well with current Mautic releases. Start by updating your package list, then install Nginx and MySQL Server. After that, pull in PHP-FPM and the exact extensions Mautic needs:

  • php-fpm
  • php-mysql
  • php-imap
  • php-curl
  • php-gd
  • php-xml
  • php-mbstring
  • php-zip
  • php-intl
  • php-bcmath

Each extension serves a real purpose. The IMAP extension reads bounce messages and unsubscribe replies. GD handles image processing for thumbnails. Mbstring and Intl manage character sets and translations across languages. BCMath gives you precise math for lead scoring and currency calculations. Do not skip any of them, or the installer will complain halfway through.

If Apache is already installed, remove it. Both web servers want port 80 and 443. Running them side by side causes silent failures that are frustrating to debug. A clean apt remove apache2 followed by apt autoremove prevents that headache entirely.

Tune PHP and the Database

Mautic’s installer and background jobs are memory-hungry. Open your PHP-FPM configuration file, located at /etc/php/8.3/fpm/php.ini, and raise the memory limit to 512 MB. Set the upload size to 50 MB so you can import contact lists and asset bundles without hitting arbitrary walls. After saving, restart PHP-FPM to apply the changes. While you are at it, bump post_max_size to match your upload limit; otherwise PHP rejects large multipart form submissions even when upload_max_filesize looks correct.

Next, create a dedicated MySQL database and user. Call the database whatever you like, but keep the username and password in a password manager. Mautic stores every contact action, campaign decision, and email open event in these tables, so granting broad privileges to a single-purpose account limits exposure if something else on the server is compromised.

Install Mautic and Its Tooling

Download the latest stable Mautic release and extract it into /var/www/html/mautic. Set the directory owner to www-data so the web server can write cache files, logs, and local configuration updates. On Ubuntu, that means running chown -R www-data:www-data /var/www/html/mautic.

You also need Composer and npm installed on the server. Composer resolves PHP dependencies, and even if you deploy from the pre-built release archive, you will need Composer later when adding marketplace plugins or running manual updates. Npm matters if you ever customize themes or build frontend assets from source. Having both tools ready now saves you from scrambling when the project evolves.

Configure Nginx and Lock It Down

Your Nginx virtual host should point its root directory to /var/www/html/mautic and treat index.php as the default index. Route PHP requests to the Unix socket that PHP-FPM opens, typically at /run/php/php8.3-fpm.sock. A solid server block includes a try_files directive that falls back to the front controller, plus a location block that denies access to hidden files starting with a dot. Mautic ships with .htaccess files meant for Apache, but Nginx ignores them, so explicit deny rules in your virtual host keep your logs and temp directories private.

Before you run the web-based installer, get a TLS certificate. Use Certbot with the Nginx plugin to pull a free Let’s Encrypt certificate and automatically rewrite your HTTP traffic to HTTPS. Mautic handles login credentials and contact data; there is no excuse for serving it over plain text.

Cron Jobs Are the Engine

Deze stap is ononderhandelbaar. Zonder geplande taken is Mautic slechts een dashboard dat niets doet. De applicatie zet campagneacties, het verzenden van e-mails en het herberekenen van segmenten in een wachtrij in de database, en vertrouwt vervolgens op de command line om deze te verwerken.

Stel cronjobs in voor de Mautic-gebruiker om deze achtergrondtaken af te handelen:

  • Segmenten bijwerken
  • Campagnes uitvoeren
  • E-mails verzenden
  • Bounces ophalen

In de praktijk betekent dit dat de console-opdrachten van Mautic met verschillende intervallen moeten worden aangeroepen. Het opnieuw opbouwen van segmenten kan elk uur worden uitgevoerd. Campaign triggers en de verwerking van de e-mailwachtrij hebben meestal een korter tijdsbestek nodig, elke vijf tot vijftien minuten, afhankelijk van het volume. Het ophalen van bounces via IMAP moet regelmatig genoeg gebeuren zodat je reputatie als afzender niet lijdt onder ongecontroleerde spamklachten. Houd je syslog of de cron-output in de gaten om te bevestigen dat ze worden afgerond zonder geheugenfouten.

Het platform gebruiken

Zodra de installatie is voltooid en cron soepel draait, log je in op het dashboard. De interface draait om drie bouwstenen: contacten, segmenten en campagnes.

Gebruik de drag-and-drop campaign builder om e-mailworkflows te ontwerpen. Een nieuwe abonnee komt in de flow, wacht een dag, ontvangt een welkomstbericht en splitst zich op basis van de vraag of er op een link is geklikt. Ondertussen scoort het Points-systeem stilletjes leads wanneer ze prijspagina's bezoeken of productaankondigingen openen. Jij bepaalt de drempelwaarden die een 'hot lead' signaleren die een verkoopgesprek waard is.

Segmenten groeperen contacten automatisch op basis van regels die jij definieert. Je kunt bijvoorbeeld iedereen segmenteren die in de afgelopen dertig dagen een campagne heeft geopend, of contacten in een specifiek land isoleren. Formulieren op je landingspagina's voeden deze segmenten rechtstreeks. Koppel de onderdelen aan elkaar en je hebt een geautomatiseerde nurture-sequentie die reageert op gedrag, in plaats van hetzelfde bericht naar je hele lijst te sturen.

Het echte werk na de implementatie

Het opzetten van Mautic op Ubuntu 24.04 is slechts het begin. Maak een back-up van je database en je /var/www/html/mautic directory voor elke update. Houd de PHP-errorlogs in de gaten wanneer je nieuwe plugins installeert. Test de cron-output nadat je je contactenlijst hebt uitgebreid, want een taak die bij duizend contacten in enkele seconden klaar is, kan bij vijftigduizend een time-out veroorzaken.

Bij zelf-hosting ruil je het gemak van een beheerde SaaS in voor soevereiniteit over je marketinggegevens. Er is geen vendor lock-in, geen verrassingen in de prijs per contact en geen derde partij die je analytics gijzelt. Jij bezit de server, de database en de relatie met je publiek. Voor teams die bereid zijn een Linux-machine en een handvol cron-expressies te onderhouden, is die ruil meestal de moeite waard.