Skip to content
Follow
CMS

How to Install Lychee with Apache on Ubuntu 24.04

Richard
Written by
Richard
Jan 16, 2025 Updated Mar 20, 2026 7 min read
How to Install Lychee with Apache on Ubuntu 24.04
How to Install Lychee with Apache on Ubuntu 24.04

You install Lychee with Apache on Ubuntu 24.04 to set up a powerful, self-hosted photo management system.

Lychee is an open-source web application that lets you effortlessly organize, manage, and share your entire photo library directly from your browser.

This guide details the installation process on Ubuntu 24.04, integrating Lychee with the Apache web server for a reliable way to keep your digital memories accessible.

⚡ Quick Answer

Install Apache with `sudo apt install apache2`, then MariaDB with `sudo apt install mariadb-server`. Create a database for Lychee, install PHP with `sudo apt install php libapache2-mod-php`, and download Lychee files.

Install Apache HTTP server on Ubuntu

To run Lychee, you first need a web server, and we’ll use Apache for this guide. Installing Apache on Ubuntu is straightforward using a couple of terminal commands.

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 installation on Ubuntu 24.04
Apache2 Default Page displayed after 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 the MariaDB database server on Ubuntu

Lychee also needs a database to store its information, and we’ll set up MariaDB for this. You can install the MariaDB database server on Ubuntu with simple commands in your terminal.

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 Lychee database

After installing MariaDB, you need to create a dedicated database for Lychee to use. We’ll create a database named ‘lycheedb’ and a user ‘lycheedbuser’ with all the necessary permissions.

As part of the setup, we will create a lycheedb database and a user account called lycheedbuser.

Finally, we’ll grant the lycheedbuser full access to the lycheedb database.

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 lycheedb CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER lycheedbuser@localhost IDENTIFIED BY 'type_your_password_here';
GRANT ALL ON lycheedb.* TO lycheedbuser@localhost WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit

Ensure to replace ‘type_your_password_here ‘with your password.

Install PHP on Ubuntu Linux

Lychee is built using PHP, so you’ll need to install it on your Ubuntu system. We’ll install the latest version of PHP along with all the necessary extensions Lychee requires.

Then, run the commands below to install the latest PHP version.

🐧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-bcmath php-json php-sqlite3 php-soap php-zip

Additional help on installing PHP

How to install PHP on Ubuntu Linux

Download Lychee files

Now it’s time to get the Lychee application files onto your server. You can download the latest version from the official Lychee page and then extract it into the correct folder for Apache.

To always install the latest version, check the download page for Lychee. Get the download link and download the archived package to your computer. Then, extract it.

First, navigate to the /tmp/ directory and download the Lychee files. Next, extract the content into the Lychee folder in the Apache root directory.

The final step is to change the permissions. This will allow the Apache web server to interact safely with the files, ensuring a secure environment for your Lychee installation.

Command Prompt
cd /tmp/
wget https://github.com/LycheeOrg/Lychee/releases/download/v6.2.0/Lychee.zip
sudo unzip Lychee.zip -d /var/www
sudo chown -R www-data:www-data /var/www/Lychee

Next, run the command below to copy the ‘.env‘ file for Lychee and modify it using the ‘nano‘ editor.

🐧Bash / Shell
sudo -u www-data cp /var/www/Lychee/.env.example /var/www/Lychee/.env
sudo -u www-data nano /var/www/Lychee/.env

Change the default APP_URL to match your domain name and the database info created above.

💻Code
# Lychee domain URL
APP_URL=https://lychee.example.com

# DB_CONNECTION can be sqlite, mysql or pgsql. For sqlite the other entries are
# *not* be left blank.
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=lycheedb
DB_USERNAME=lycheedbuser
DB_PASSWORD=type_password_here
DB_LOG_SQL=false
DB_LOG_SQL_EXPLAIN=false #only for MySQL

Save the file and exit the editor.

Once you have completed all the above steps, continue configuring the Apache web server below to serve the Lychee content.

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

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

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

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

<Directory /var/www/Lychee/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.

Then, run the commands below to enable the virtual host and restart the Apache server.

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

Setup Let’s Encrypt SSL/TLS for Lychee

To make your Lychee installation secure and accessible via HTTPS, you should set up an SSL/TLS certificate. We’ll use Let’s Encrypt, a free and popular service, to get a certificate for your Apache server.

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://lychee.example.com

A Lychee installation wizard page should appear. Click next to continue.

Lychee welcome setup wizard for photo management installation
Lychee welcome setup wizard for photo management installation

Ensure the information in the .env file is correct. Then, click Install.

Lychee welcome setup install
Lychee welcome setup install

Fix any errors and set up an account.

Lychee welcome setup account
Lychee welcome setup account

Create an admin account.

Lychee welcome setup account details
Lychee welcome setup account details

Lychee should be installed and ready to use.

Lychee welcome setup complete
Lychee welcome setup complete

That should do it!

Conclusion:

Installing the Lychee Photo Management system on Ubuntu can significantly enhance your photo organization and sharing experience. Here are the key points to remember:

  • User-Friendly Interface: Lychee offers an intuitive platform for managing your photo gallery efficiently.
  • Strong Dependencies: The installation requires effective installation of Apache, MariaDB, and PHP.
  • Database Configuration: A dedicated database and user account is essential for Lychee’s smooth operation.
  • Web Hosting: Configuring a virtual host for Apache allows you to serve Lychee from a specific domain.
  • Secure Access: Implementing SSL/TLS certificates via Let’s Encrypt ensures secure connections to your gallery.
  • Easy Setup Wizard: The Lychee installation wizard simplifies users’ final configuration.
  • Self-Hosting Control: Installing Lychee on your server gives you complete control over your media files.

Following the steps outlined will give you a robust platform to manage and enjoy your photo collection.

Does Lychee have a free version?

Lychee Slicer Lite, the free edition. No cost, no hassle, just easy slicing. Lychee Slicer Lite is the perfect introduction into the world of 3D printing.

Is Lychee software free?

Install and use Lychee Slicer on all your devices! It's free, but you can get the Lychee Slicer Plus and the Lychee Library version within the app. Lychee Slicer updates automatically, so you'll always enjoy the latest version and features.

What is a lychee slicer used for?

Think of it like giving your printer step-by-step instructions. Lychee Slicer is the most intuitive and innovative slicer to help you with this. It lets you adjust the model, slice it into perfect layers for your 3D printer to understand. Our slicing software is also compatible with thousands printers.

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 i-doit on Ubuntu with Apache
CMS How to Install i-doit on Ubuntu with Apache
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop 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 *