Update Servers/Virtualization/Networking/Unifi Network Server (Controller).md

This commit is contained in:
2025-05-13 21:46:29 -06:00
parent 347a4149e1
commit 9aafe6065b

View File

@ -13,7 +13,8 @@ We need to configure APT with a few commands to ensure that we can download the
sudo apt-get update && sudo apt-get install ca-certificates apt-transport-https
echo 'deb [ arch=amd64,arm64 ] 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
echo "deb [trusted=yes] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
sudo apt-get update
```
!!! node "Alternative GPG Key Installation"
@ -23,7 +24,7 @@ sudo wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi
```
### MongoDB Server
Run the following commands to add the necessary repositories and GPG keys, then install and enable automatic startup for the MongoDB server.
Run the following commands install and enable automatic startup for the MongoDB server. Original reference documentation can be found [here](https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/).
```sh
```