installeren van UNMS updates

https://help.ubnt.com/hc/en-us/articles/115012196527-UNMS-Installation-Guide


eerst Ubuntu updaten met;

sudo apt-get update
sudo apt-get install curl sudo bash


daarna
in shell gebruik commando;
curl -fsSL https://unms.com/v1/install > /tmp/unms_inst.sh && sudo bash /tmp/unms_inst.sh --update --unattended


-------------------------------------------------------------------------------------------------

Installation Instructions


 Back to Top 

Run the command below on the host to install and start UNMS (it will automatically install Docker if it is not installed already). If a UNMS installation already exists, it will be overwritten, but all data will be kept. You can use the attribute--updateif you want to be sure the new installation will have the same parameters as the old one.  You can register your devices to UNMS by following this article: The UNMS Key and the Device Registration Process. In case you need to customize the installation process please read Optional installation steps.

curl -fsSL https://unms.com/v1/install > /tmp/unms_inst.sh && sudo bash /tmp/unms_inst.sh

Click to copy

The installation script will check if your ports :80 and :443 are open and if they are not, it will ask you to specify which ports you want UNMS to use. The same applies to the overcommit memory settings. If the vm.overcommit_memory is not set to '1', the installation script asks for a permission to do it. In case you do not want to be bothered with those interrupts in the installation process you can use --unattended attribute to let the installation script do all the necessary arrangements by itself.

 When the process is complete, you can access UNMS at http://server_hostname_or_ip/. Please don't use localhost. Use server hostname or its IP address.

 NOTE: The installation script needs to use sudo permissions. Those are required to install Docker in case it is not available in the OS already. It is also needed to create the UNMS user, under which the UNMS application runs as well as to set up a cron task which manages the UNMS updates.