How to Install Nextcloud on Ubuntu: A Step-by-Step Setup Guide

Nextcloud is a true self-hosted file share and sync platform. Here I will show you how to install Nextcloud on Ubuntu in a few easy steps.

Nextcloud is a self-hosted file-sharing application server that allows you to store your files, documents, and contacts from a centralized location. It is a true open-source platform similar to Dropbox, Google Drive, OneDrive, and other proprietary online storage services.

The problem with the big players is that you don’t know where your data is exactly and whether it is safe from access by others. So when it comes to some classified data that you don’t want to store on some third-party servers, it is good to go for something you can control completely.

With Nextcloud, you can synchronize everything between your devices and share files with others. Furthermore, you can create multiple accounts for friends/family. They will then be able to log into the server and store data, very similar to Dropbox, etc.

The server-side program of Nextcloud is meant to work on Linux operating systems; therefore, any Linux user, even the beginner, can easily install it. So without further ado, let’s get down to installation.

1. Install Apache Web Server

Since Nexcloud will run on a web browser, the first step will be to install the Apache Web Server.

sudo apt install apache2

Once installed, verify the status of Apache:

sudo systemctl status apache2
Verifying the Apache Web Server Ststus

We can see that the Apache Web Server is up and running from the output above.

2. Install PHP

Nextcloud is written in PHP programing language, so PHP is an essential requirement for Nextcloud code. Run the following commands to install PHP modules required or recommended by Nextcloud.

sudo apt install php libapache2-mod-php php-imagick php-common php-mysql php-gd php-json php-curl php-zip php-xml php-mbstring php-bz2 php-intl php-bcmath php-gmp php-dom unzip

Confirm your PHP version:

php -v
Confirm Installed PHP Verssion

Reload Apache for the changes to take effect.

sudo systemctl reload apache2

3. Install and Configure MariaDB Database Server

Nextcloud can use MySQL, MariaDB, PostgreSQL, or SQLite database to store its data. In this guide, we will use MariaDB, so let’s install it.

sudo apt install mariadb-server

With the MariaDB servers installed, we need to set a password for the MariaDB admin user:

sudo mysql_secure_installation

When it asks you to enter the MariaDB root password, press Enter key as the root password isn’t set yet. Then enter Y to set the root password for the MariaDB server. Remember to give the MariaDB root user a strong password.

Set MariaDB root Password

Next, you can press Enter to answer all remaining questions, remove anonymous users, disable remote root login, and remove the test database.

Securing MariaDB Installation

4. Create a Database and User for Nextcloud

Login as a root user to MariaDB:

sudo mysql -u root -p
Connect to MariaDB Database

Then create a new database for Nextcloud. This tutorial names the database nextcloud, but you can use whatever name you like.

CREATE DATABASE nextcloud;

Next, create the database user and grant permissions to the nextcloud database. I choose nextcloud-user for a username, but you can use your preferred name for this user.

Don’t forget to replace your-password with your preferred password.

GRANT ALL ON nextcloud.* TO 'nextcloud-user'@'localhost' IDENTIFIED BY 'your-password';

Reload privileges and exit.

FLUSH PRIVILEGES;
EXIT;
Create a Nextcloud Database User and Grant Permissions

Confirm if the user can connect to the database with the provided password:

mysql -u nextcloud-user -p
MySQL Connection Succeeded

5. Download and Install Nextcloud

With the database configured, now it’s time to download Nextcloud. Nextcloud is distributed as a zip file. Check for the latest release from the Nextcloud download page before pulling the archive.

As of this writing, the latest release is 23.0. Use the following command to download NextCloud:

wget https://download.nextcloud.com/server/releases/nextcloud-23.0.0.zip
Download Nextcloud Server

Execute the below commands to unzip the package into /var/www/html, create data directory where Nextcloud to store the user data, and set appropriate directory permissions:

sudo unzip nextcloud-23.0.0.zip -d /var/www/html/
sudo mkdir /var/www/html/nextcloud/data
sudo chown -R www-data:www-data /var/www/html/nextcloud/

6. Configure Nextcloud

Nextcloud is now successfully installed. Next, open a web browser and point it to http://server-ip/nextcloud/ to complete the final steps.

How to Install Nextcloud - Completing Installation
  1. Enter your Username and Password to create an admin account.
  2. Specify the Data folder. In our case it is /var/www/html/nextcloud/data.
  3. Provide database connection settings (user, password, and database name) as created in Step 4.
  4. Click the Finish setup button to complete the installation of Nextcloud on Ubuntu.
Nextcloud Successfully Installed on Ubuntu

You’ll find yourself logged in as the admin user, where you can start customizing your Nextcloud instance. Congratulation! You can start using it as your private cloud storage.

You can secure your Nextcloud installation with a free Let’s Encrypt SSL Certificate for your domain.

Thanks for using our tutorial to install Nextcloud on Ubuntu. I hope this was helpful.

Bobby Borisov

Bobby Borisov

Bobby, an editor-in-chief at Linuxiac, is a Linux professional with over 20 years of experience. With a strong focus on Linux and open-source software, he has worked as a Senior Linux System Administrator, Software Developer, and DevOps Engineer for small and large multinational companies.

Think You're an Ubuntu Expert? Let's Find Out!

Put your knowledge to the test in our lightning-fast Ubuntu quiz!
Ten questions to challenge yourself to see if you're a Linux legend or just a penguin in the making.

1 / 10

Ubuntu is an ancient African word that means:

2 / 10

Who is the Ubuntu's founder?

3 / 10

What year was the first official Ubuntu release?

4 / 10

What does the Ubuntu logo symbolize?

5 / 10

What package format does Ubuntu use for installing software?

6 / 10

When are Ubuntu's LTS versions released?

7 / 10

What is Unity?

8 / 10

What are Ubuntu versions named after?

9 / 10

What's Ubuntu Core?

10 / 10

Which Ubuntu version is Snap introduced?

The average score is 68%

11 Comments

  1. Hi. Maybe you have tutorial how to make same, but with occ in terminal?
    I’m curious about how to find error reports in terminal, i mean to know when region is not set, or missing modules. in web version everything is easy, but i need that info in terminal.
    Anw, nice guide, thx.

  2. Hi Bobby Borisov,
    Thank you so much bobby for helping and customizing the process of installing and configuring next cloud in ubuntu and all other version. This will help all of us in terms of setting up our own next cloud.

  3. Does this guide have any prerequisites?
    NC 23 doesnt work with PHP 8.1.2 which is the PHP that will be installed on Ubuntu 22.04. Is there a work around for this?

    • Hi Lasua,

      Are you sure you replaced the “server-ip” part in the address with the actual IP address of the server you installed Nextcloud on?

      Best,
      Bobby

  4. Hi Bobby,

    First off, thank you for this! Secondly, as some of us are new to Ubuntu/linux, it may be useful to have a step between 5 and 6 that has users find their ip address, e.g., “$ hostname -I” or “$ ip a”

    May clear up some confusion for what to put in “http://[your server ip]/nextcloud”

    Best,
    Daniel

  5. Thanks for this tutorial. It works. however, I would like for example to access nexcloud on the main ip. for example I would like to see the nextcloud screen on 192.168.10.1. Currently, I am seeing the default apache web page.

  6. This version of Nextcloud is not compatible with > PHP 8.0.
    You are currently running 8.1.12-1ubuntu4.3. ._.

  7. Doesn’t work.
    Login to Nextcloud at the end, create admin account and then you can’t login with that account ever again.

Leave a Reply

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