Link Search Menu Expand Document

UniFi Controller

To manage UniFi products, you require the UniFi Controller software. UniFi does offer the UniFi Cloud Key which runs a local instance of the software, but instead of spending about $100, we can self-host the software for free!

Configuration

Virtualization Type
Container
OS
Ubuntu
Cores
1 CPU
Memory
1 GB
Disk Size
4 GB

Installation

Script Install

There’s no need to reinvent the wheel and explain all the necessary commands when someone else has done the work. UniFi has verified that these scripts are in safe and working conditions and are an easy way to be up and running quickly. You can find installation scripts that have been so generously compiled by Glenn R. below.

UniFi Install Scripts

# For super easy, latest and greatest 1 line install, use the following:
rm unifi-latest.sh &> /dev/null; wget https://get.glennr.nl/unifi/install/install_latest/unifi-latest.sh && bash unifi-latest.sh`

To start, make sure you’re connected and logged in as root on your Ubuntu/Debian machine.

# We'll start by updating and installing the necessary package.
apt-get update; apt-get install ca-certificates wget -y

# Copy the link location of the script version you're after. Download the script by using the wget command. Make sure to replace the x's with your wanted version!
wget https://get.glennr.nl/unifi/install/unifi-x.x.x.sh 

#Run and follow the shell script with the command below.
bash unifi-x.x.x.sh

Once the installation is complete, head over to https://ServerIPAddress:8443 and you’re all set!

UniFi Controller Homepage

UniFi Official Documentation for installing on Ubuntu

UniFi Install Scripts by Glenn R.