Unifi Network installieren (Debian 11)
Zur Navigation springen
Zur Suche springen
Abhängigkeiten installieren
apt update
apt install ca-certificates apt-transport-https gnupg2 wget
libssl1.0.0
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5_amd64.deb
dpkg -i libssl1.0.0_1.0.2n-1ubuntu5_amd64.deb
mongodb installieren
Repository erstellen
wget -qO - https://www.mongodb.org/static/pgp/server-3.6.asc | apt-key add -
echo "deb https://repo.mongodb.org/apt/debian jessie/mongodb-org/3.6 main" | tee /etc/apt/sources.list.d/mongodb-org-3.6.list
apt update
apt install mongodb-org
openjdk-8 installieren
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add -
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
apt update
apt install adoptopenjdk-8-hotspot -y
apt-mark hold openjdk-11-* && apt-mark hold openjdk-17-*
Unifi Network installieren
wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg
echo 'deb https://www.ui.com/downloads/unifi/debian stable ubiquiti' | tee /etc/apt/sources.list.d/100-ubnt-unifi.list
apt update
apt install unifi
Quellen
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-debian/
https://www.kernelhost.com/cp/knowledgebase/2/Java-8-or-Java-11-auf-Debian-10-installieren.html