UniFi Network Server


🌐 Resources πŸ”—

πŸ”— UniFi Installation Scripts - by Glenn R.

These scripts install/update the UniFi Network Server application on Ubuntu/Debian-based machines.


Install UniFi Network Server

  • Install a Ubuntu Server VM/Proxmox LXC (or a supported Ubuntu/Debian-based distro) and SSH into it.

  • Run the UniFi Installation Script that will install the latest UniFi Network Server application.

sudo sh -c '
	rm unifi-latest.sh &> /dev/null; wget https://get.glennr.nl/unifi/install/install_latest/unifi-latest.sh && bash unifi-latest.sh
'
  • UniFi Web Page - https://<SERVER_IP>:8443

# Check UniFi service
sudo systemctl status unifi
sudo systemctl disable unifi
sudo systemctl enable unifi
sudo systemctl stop unifi
sudo systemctl restart unifi

Update UniFi Network Server

sudo sh -c '
	rm unifi-update.sh &> /dev/null; wget https://get.glennr.nl/unifi/update/unifi-update.sh && bash unifi-update.sh
'

Last updated

Was this helpful?