Created
September 22, 2022 04:34
-
-
Save buzzkillb/f9b4f5c124a49d028b37002d128833f4 to your computer and use it in GitHub Desktop.
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
#unifi controller installer for Proxmox Focal Ubuntu 20.04 Template Container | |
#https://help.ui.com/hc/en-us/articles/220066768-UniFi-How-to-Install-and-Update-via-APT-on-Debian-or-Ubuntu | |
#https://github.com/linuxserver/docker-unifi-controller/blob/master/Dockerfile | |
#Install | |
sudo apt-get update && sudo apt-get install ca-certificates apt-transport-https mongodb-server openjdk-8-jre-headless | |
echo 'deb https://www.ui.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list | |
sudo wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg | |
sudo apt-mark hold openjdk-11-* | |
sudo apt-get update && sudo apt-get install unifi -y | |
#systemd | |
#To stop the UniFi service: sudo service unifi stop | |
#To restart the UniFi service: sudo service unifi restart | |
#To see the status of UniFi service: sudo service unifi status | |
#Go to https://IPADDRESS:8443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment