How to Install the UniFi Controller on Ubuntu

  • Post author:WunderTech
  • Post published:September 2, 2023
  • Post last modified:November 29, 2023
  • Post category:Docker
  • Reading time:11 mins read

In this tutorial, we’re going to look at how to install the UniFi Controller on Ubuntu.

If you’re using UniFi devices (Switches, Access Points, etc), you will need a controller to manage them all. Certain UniFi devices come preinstalled with the UniFi OS, or the Controller can be added to an existing, non-supported UniFi network with a Cloud Key. However, setting up the UniFi Controller is both a free, and fairly straightforward option.

There are many devices that you can install the UniFi Controller on, but one of the easiest options is using Ubuntu. We’ll look at how to install the UniFi Controller on Ubuntu using Docker. Before we do, I want to explain why I think Docker is the best option for the UniFi Controller.

Why Use Docker for the UniFi Controller on Ubuntu?

Technically, you can install the UniFi Controller directly onto the Ubuntu operating system which will allow you to manage the controller at the operating system level.

However, running it on Docker is an easier overall solution, as you’ll have an extremely straightforward way to update it, you can quickly back up all of the important configuration files, and you can use the Ubuntu device for other Docker packages as well.

Not only that, but this allows the configuration to be portable. Rather than having to export and import your UniFi settings through the controller itself, you can move the volume to different devices (any device capable of running Docker), and your UniFi Controller will be up and running in a few minutes.

The downside to this process is that you have to install Docker and Portainer first (Portainer isn’t necessary, but I find it easier to manage). As soon as Docker and Portainer are installed, we can install the UniFi Controller.

How to Install the UniFi Controller on Ubuntu

Before we can install the UniFi Controller on Ubuntu, we have to ensure that Docker and Portainer are installed and configured.

Step 1: Installing Docker and Portainer

Before you can install the UniFi Controller on Ubuntu, you must install Docker and Portainer. I have a full tutorial on how to install Docker and Portainer on Ubuntu. Follow this tutorial, then continue with the UniFi Controller installation.

Step 2: Installing the UniFi Controller

Now that Docker and Portainer have been configured, we can install the UniFi Controller on Ubuntu by creating a container. Before we do, we’re going to create a directory that will store all of our important container data.

NOTE: If you ever plan to move the UniFi Controller to a different device (or simply want to back it up), you must copy the data in this folder to the new location, then map the volume on the new device to the data.

1. Run the commands below on Ubuntu to create a new directory for the UniFi Controller’s data.

cd ~
mkdir unifi-controller
making the unifi controller directory. how to install the unifi controller on ubuntu

2. Get the full path of the current directory and save it for later.

pwd
print working directory command.

3. Log in to Portainer and select Stacks, then Add Stack.

adding a stack in portainer

4. Give the stack a name, then paste the contents below into the editor. You will most likely have to update the timezone, but the rest of the settings can stay as default.

There are other parameters you can use as well if you’d like, but the configuration below should give you a default setup. When you’re done making changes, select Deploy the Stack at the bottom of the screen.

NOTE: You must change the path from /home/frank to the path of your user that we found in step two!

version: "2.1"
services:
  unifi-controller:
    image: lscr.io/linuxserver/unifi-controller:latest
    container_name: unifi-controller
    environment:
      - TZ=America/Detroit
    volumes:
      - /home/frank/unifi-controller/:/config
    ports:
      - 8443:8443
      - 3478:3478/udp
      - 10001:10001/udp
      - 8080:8080
    restart: unless-stopped
install the unifi controller on a raspberry pi

5. It will take a few minutes to deploy the container, but when you’re brought back, you should see the container running in the Containers tab.

container running

Step 3: Accessing the UniFi Controller

Now that the UniFi Controller has been created in Docker on your Raspberry Pi, you can access it by following the steps below.

1. Navigate to the IP address of your Ubuntu Server and port 8443 using HTTPS.

https://UBUNTU_IP:8443

2. Give your controller a name (or restore from a backup if you have a backup), accept the terms of service (if you agree), and select Next.

give a name to the controller

3. If you’d like to sign in with a Ubiquiti account, you can do that at step 2. This will allow you to access the UniFi Controller using UniFi’s website (or mobile application).

signing in with a unifi account

4. If you’d prefer keeping everything local, select Switch to Advanced Setup, uncheck Enable Remote Access and Use your Ubiquiti account for local access, then create a local account.

enabling remote access for the device

5. Determine if you’d like to enable auto backup and if you’d like your network to be automatically optimized.

automatically back up the container if desired

6. This next step will determine the devices that are waiting to be configured. If the devices are already assigned to another UniFi Controller, you will not see any here, but if you haven’t, you should see a list of your devices.

connect directly to your devices

7. If you’re setting up an Access Point or Router + Access Point combo unit (like the UniFi Dream Machine or UniFi Dream Router), you will be able to configure your Wi-Fi settings here.

wifi setup for local network

8. Confirm your settings and Finish. The UniFi Controller is now set up!

review final configuration

Conclusion & Final Thoughts

This tutorial looked at how to install the UniFi Controller on Ubuntu. In my opinion, this is the easiest way to install the UniFi Controller on Ubuntu because you will periodically receive updates and this is the best/easiest way to back up the current configuration (in case you run into errors) and also update it.

In summary, all you need to do to back up the container is copy the contents of the unifi-controller folder to a separate folder/device, install the update, and then test. If you run into issues, restore the old unifi-controller folder and you’ll be back to the older version!

Thanks for checking out the tutorial on how to install the UniFi Controller on Ubuntu. If you have any questions, please leave them in the comments!

WunderTech

Frank is an IT professional with 13+ years experience and the creator of WunderTech. He focuses on sharing his experience with others on computer hardware, servers, software, networking, and self-hosted apps. He has a BS in Computer Information Systems and an MBA. Learn more about Frank in his bio.