-
-
Save brendenhoffman/e4004be74b842a72f5368a4d7063eaf6 to your computer and use it in GitHub Desktop.
Install Unifi Controller on Debian 11 (Bullseye)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update && apt upgrade -y | |
# Java 8 | |
curl -fsSL "https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public" | gpg --dearmor --yes -o /usr/share/keyrings/adoptopenjdk-archive-keyring.gpg | |
echo "deb [signed-by=/usr/share/keyrings/adoptopenjdk-archive-keyring.gpg] https://adoptopenjdk.jfrog.io/adoptopenjdk/deb bullseye main" | tee /etc/apt/sources.list.d/adoptopenjdk.list | |
apt update && apt install -y adoptopenjdk-8-hotspot | |
# MongoDB 3.6 | |
wget -qO - https://www.mongodb.org/static/pgp/server-3.6.asc | apt-key add - | |
echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/3.6 main" | tee /etc/apt/sources.list.d/mongodb-org-3.6.list | |
# Unifi | |
apt update && apt install -y ca-certificates apt-transport-https | |
echo 'deb https://www.ui.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list | |
wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg | |
apt update && apt install -y unifi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment