Skip to content
Follow
CMS

How to install TYPO3 with Apache on Ubuntu 24.04

Richard
Written by
Richard
Jun 3, 2024 Updated Jul 13, 2026 7 min read
TYPO3 featured image
TYPO3 featured image

Installing TYPO3 with Apache on Ubuntu 24.04 involves setting up the web server and then putting TYPO3’s files in place.

TYPO3 is a flexible, free system for building large websites, often used by businesses. Apache is a very common web server that will handle your TYPO3 site.

This guide uses Ubuntu 24.04 LTS, a solid choice for running TYPO3. You will end up with a working TYPO3 site ready for you to add your content.

⚡ Quick Answer

Install Apache using `sudo apt install apache2`, then MariaDB with `sudo apt install mariadb-server`. Next, create a TYPO3 database and user in MariaDB. Finally, install PHP with `sudo apt install php libapache2-mod-php php-intl php-mysql php-curl php-cli php-zip php-xml php-gd php-common php-mbstring php-xmlrpc php-json php-sqlite3 php-soap php-zip`.

Install Apache HTTP server on Ubuntu

Install Apache HTTP server on Ubuntu to run TYPO3 by opening your terminal and running the commands ‘sudo apt update’ and ‘sudo apt install apache2’. Apache is the web server software that will handle requests for your TYPO3 website on Ubuntu 24.04.

To do that, open the Ubuntu terminal and run the commands below to install the Apache web server.

🐧Bash / Shell
sudo apt update
sudo apt install apache2

Once Apache is installed, the commands below can start, stop, and enable the Apache web server to start automatically when your server boots up.

🐧Bash / Shell
sudo systemctl stop apache2
sudo systemctl start apache2
sudo systemctl enable apache2

You can test that the Apache web server is running by opening your web browser and browsing to the server’s localhost or IP address.

http://localhost

Apache2 default page displayed after successful installation on Ubuntu 24.04
Apache2 default page displayed after successful installation on Ubuntu 24.04

When you see the Apache2 Default Page, it means the Apache HTTP server is successfully installed.

Additional help on installing Apache on Ubuntu is in the link below.

How to install Apache on Ubuntu

Install MariaDB database server on Ubuntu Linux

Install the MariaDB database server on Ubuntu Linux for TYPO3 by opening your terminal and running the ‘sudo apt update’ command. MariaDB is a popular database that TYPO3 needs to store its information.

To install and use the MariaDB database server, use the instructions below.

Open the Ubuntu terminal and run the commands below to install the MariaDB database server.

🐧Bash / Shell
sudo apt update
sudo apt install mariadb-server

Once the MariaDB database server is installed, use the commands below to stop, start, and enable the MariaDB server to start automatically when the server boots.

🐧Bash / Shell
sudo systemctl stop mariadb
sudo systemctl start mariadb
sudo systemctl enable mariadb

Run the following commands to validate and test if the MariaDB database server is installed successfully.

🐧Bash / Shell
sudo mariadb

Once you run the commands above, it will log you onto the MariaDB console and display a message similar to the one below.

💻Code
Welcome to the MariaDB monitor.  Commands end with ; or g.
Your MariaDB connection id is 32
Server version: 10.11.2-MariaDB-1 Ubuntu 23.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

MariaDB [(none)]> 

The message tells you that the server is installed successfully.

Additional help on installing MariaDB.

Create a TYPO3 database

Create a TYPO3 database named ‘typo3db’ and set up a user account ‘typo3dbuser’ with full permissions after installing MariaDB. This database will store all the content and settings for your TYPO3 website.

As part of the setup, we will create a database named ‘typo3db‘ and a corresponding user account called ‘typo3dbuser.’

The `typo3dbuser` database user receives full access permissions for the `typo3db` database. This access ensures the TYPO3 content management system can create, read, update, and delete necessary data for its operations.

All the database steps above can be done using the commands below:

But first, log on to the MariaDB database server:

🐧Bash / Shell
sudo mariadb

Then run the commands below to complete the steps:

💻Code
CREATE DATABASE typo3db CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER typo3dbuser@localhost IDENTIFIED BY 'type_your_password_here';
GRANT ALL ON typo3db.* TO typo3dbuser@localhost WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit

Ensure to replace ‘type_your_password_here ‘with your password.

Install PHP on Ubuntu Linux

Install PHP on Ubuntu Linux for TYPO3 by running the command ‘sudo apt install php libapache2-mod-php php-intl php-mysql php-curl php-cli php-zip php-xml php-gd php-common php-mbstring ph’. PHP is the programming language TYPO3 uses to function.

Run the commands below to install PHP.

🐧Bash / Shell
sudo apt install php libapache2-mod-php php-intl php-mysql php-curl php-cli php-zip php-xml php-gd php-common php-mbstring php-xmlrpc php-json php-sqlite3 php-soap php-zip

Additional help on installing PHP

How to install PHP on Ubuntu Linux

Download TYPO3 files

Download the latest TYPO3 files from the official TYPO3 website or their GitHub repository to install TYPO3. Always make sure to get the most recent release available to ensure you have the latest features and security updates.

⚠️Warning
Always check the download page for the latest release. Replace the download link below with the current so you have the latest version.

You may want to use the GitHub repository to get TYPO3’s latest release. Install Composer, Curl, and other dependencies to get started.

🐧Bash / Shell
sudo apt install curl git
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
⚠️Warning
After installing curl and Composer above, change the directory to the Apache2 root directory and download the TYPO3 packages from Github. Always replace the release number with the latest release.
Command Prompt
cd /var/www/
sudo composer create-project typo3/cms-base-distribution typo3 ^13
sudo touch /var/www/typo3/public/FIRST_INSTALL
sudo chown -R www-data:www-data /var/www/typo3

Once all the steps are done, configure the Apache webserver to serve the TYPO3 content.

Run the commands below to create an Apache virtual host file for TYPO3.

🐧Bash / Shell
sudo nano /etc/apache2/sites-available/typo3.conf

Then, copy and paste the content block below into the Apache server block.

💻Code
<VirtualHost *:80>
ServerName typo3.example.com
ServerAlias www.typo3.example.com
ServerAdmin admin@example.com
DocumentRoot /var/www/typo3/public

<Directory /var/www/typo3/public/>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Save the file.

You enable the TYPO3 virtual host and restart the Apache server by running the commands: `sudo a2ensite typo3.conf` and `sudo systemctl restart apache2`. This action makes your TYPO3 website accessible online.

🐧Bash / Shell
sudo a2ensite typo3.conf
sudo a2enmod rewrite
sudo systemctl restart apache2

Setup Let’s Encrypt SSL/TLS for TYPO3

Set up a free Let’s Encrypt SSL/TLS certificate for TYPO3 on Ubuntu to secure your website with HTTPS. This process uses specific commands with Apache to get and install the certificate, making your site more trustworthy.

Please read the post below for additional resources on installing and creating Let’s Encrypt SSL certificates for Apache.

How to set up Let’s Encrypt SSL certificate for Apache on Ubuntu Linux

Once you have restarted the Apache web server, open your browser and browse to the server hostname or IP address defined in the Apache server block.

💻Code
http://typo3.example.com

A TYPO3 installation wizard page should appear. Click the continue button if all requirements are met.

TYPO3 install wizard
TYPO3 install wizard

Run the command below to fix some of the problems detected.

🐧Bash / Shell
sudo sed -i "s/;max_input_vars = .*/max_input_vars = 1500/" /etc/php/8.3/apache2/php.ini
sudo sed -i "s/max_execution_time = .*/max_execution_time = 240/" /etc/php/8.3/apache2/php.ini
sudo systemctl reload apache2

Next, enter the database username and password created above and click continue.

TYPO3 install database connection
TYPO3 install database connection

Then, select the database on the next page.

TYPO3 install database
TYPO3 install database

Next, create an administrator account and click continue.

TYPO3 install admin account
TYPO3 install admin account

Your TYPO3 site should be ready to use.

TYPO3 install wizard complete
TYPO3 install wizard complete

That should do it!

Conclusion:

  • This comprehensive guide has provided the steps to set up a TYPO3 site on Ubuntu with Apache support, empowering you to establish a potent and adaptable content management system.
  • By following the outlined instructions, you can harness the stability and performance of the Apache web server while reaping the benefits of TYPO3’s robust features.
  • The installation process includes setting up Apache and MariaDB, creating a TYPO3 database, installing PHP, downloading TYPO3 files, configuring the Apache web server, and setting up Let’s Encrypt SSL/TLS for added security.
  • If you encounter any discrepancies or require further assistance, please utilize the comments section for support and clarification.

What is Apache in Ubuntu?

Apache is an open source web server that's available for Linux servers free of charge.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install RubyMine on Ubuntu 24.04
Ubuntu Linux How to Install RubyMine on Ubuntu 24.04
How to Install WebStorm on Ubuntu 24.04
Ubuntu Linux How to Install WebStorm on Ubuntu 24.04
How to Install Prospect Mail on Ubuntu 24.04
Ubuntu Linux How to Install Prospect Mail on Ubuntu 24.04
How to Install Syncthing on Ubuntu 24.04
Ubuntu Linux How to Install Syncthing on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *