Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Download the correct version of the Uplink Gateway package from here.

Table of Contents

Windows

  1. Install Docker Desktop for Windows.

  2. Download and unzip the Gateway package.

  3. Open Powershell and go to your working directory.

  4. Run the Gateway using the start script.

    Code Block
    ./start.sh
  5. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

You should see the container running in your Docker Desktop

image-20240314-205135.png
  1. Disable Windows automatic proxy detection

image-20240328-015159.pngImage Modified

Linux

  1. Install Docker Engine and Docker Compose.

  2. Download and unzip the Gateway package.

  3. Run the Gateway using the start script.

    Code Block
    ./start.sh
  4. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

Adding Gateway to the Cloud

  1. Navigate to 127.0.0.1:8000 or <device-ip>:8000, login with username: admin, password: admin, and copy the device UUID.

    Screenshot from 2024-03-13 16-08-37.png

  2. Navigate to the Gateways tab in the Web Client and add the gateway using the UUID.

Screenshot from 2024-03-13 16-04-17.pngScreenshot from 2024-03-13 16-09-28.png

Adding Cameras

  1. Navigate to the Gateway tab in Cloud One and select the gateway you would like to add a camera to.

    Screenshot from 2024-03-13 16-09-57.png

  2. Select the ‘Add Camera To Gateway’ button and fill out the camera information form.

    Screenshot from 2024-03-13 16-10-08.png

    Screenshot from 2024-03-13 16-18-14.png

    Screenshot from 2024-03-13 16-18-23.png

  3. Camera will now have been added to the gateway and cloud one and the camera can be viewed in Gateway’s camera page as well as the Cameras tab.

How to Stop Gateway

  1. Execute the stop script.

    Code Block
    ./stop.sh

How to Update Gateway

  1. Ensure that the old version of Gateway is running.

  2. Navigate to the extracted folder of the new version of the Gateway.

  3. Execute the script update.sh by providing the old Gateway directory and new Gateway directory.

    Code Block
    ./update.sh -orig <path_to_old_version_directory> -dest <path_to_new_version_directory>