Installation
Linux Installation
Version 5.9.31
Omada shares some dependencies with the Unifi network controller. Some of the below installation script has been adapted from a Unifi script from Tom Lawrence from Lawrence Systems.
#!/bin/bash
# Update apt repositories and update OS
sudo apt update && sudo apt upgrade -y
# Install libssl1.1 (dependency for MongoDB 4.4)
apt install libssl1.1
# Install MongoDB
sudo apt install -y software-properties-common
curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=amd64] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse"
sudo apt install -y mongodb-org
# Install Omada dependencies and hold Java JDK 11
sudo apt install -y openjdk-8-jre-headless jsvc curl
sudo apt-mark hold openjdk-11-*
# Install Omada
sudo wget https://static.tp-link.com/upload/software/2023/202303/20230321/Omada_SDN_Controller_v5.9.31_Linux_x64.deb
sudo dpkg -i ./Omada_SDN_Controller_v5.9.31_Linux_x64.deb
No comments to display
No comments to display