Knowledge Base

Bitte , um Beiträge und Themen zu erstellen.

Unifi Network Manager

Remove Installation and install from scratch:

apt-get remove --purge unifi

apt-get remove --purge mongodb

rm -rf /usr/lib/unifi
rm -rf /var/lib/unifi

apt-get install unifi

URL to Updates:
https://community.ui.com/releases

Update manually:
https://help.ui.com/hc/en-us/articles/204910064-UniFi-Advanced-Updating-Techniques

Manually Update the Network Application

  1. Download the desired application update from community.ui.com/releases.
  2. SSH into your device.
  3. Run the following command (UDM/UDM Pro if still running UniFi OS 1.x):
    unifi-os shell
  4. Remove previously installed files:
    rm /tmp/unifi_sysvinit_all.deb &> /dev/null
  5. Store the new application version on your device using the download link:
    curl -o "/tmp/unifi_sysvinit_all.deb" <network application link.deb>

    Example:

    curl -o "/tmp/unifi_sysvinit_all.deb" https://dl.ui.com/unifi/8.1.113/unifi_sysvinit_all.deb
  6. Once downloaded, install the new version:
    apt-get install -y /tmp/unifi_sysvinit_all.deb
  7. Following installation, remove the downloaded file:
    rm /tmp/unifi_sysvinit_all.deb