...
Table of Contents |
---|
Windows
Install WSL2 on your Windows device: https://learn.microsoft.com/en-us/windows/wsl/install
Download the Windows gateway package.
Copy and extract the contents to the Linux home directory.
The directory should be reachable from your file explorer.
Example: <linux-folder>/ubuntu/home/<user>Open your Linux terminal. The default terminal is Ubuntu.
Make sure your Ubuntu is up to date.
Code Block sudo apt-get update
Execute the docker install script.
Code Block ./docker_install.sh
Once docker is installed you can now run Docker Desktop for Windows.
Download and unzip the Gateway package.
Open Powershell and go to your working directory.
Run the Gateway using the start script.
Code Block ./start.sh
The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000
Linux
Unzip the package
If you do not already have Docker installed on your system, then execute the docker install script.
Code Block ./docker_install.sh
Once Docker and Docker Compose are successfully installed on the device. Start the Gateway by executing Install Docker Engine and Docker Compose.
Download and unzip the Gateway package.
Run the Gateway using the start script.
Code Block ./start.sh
The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000
...
Navigate to 127.0.0.1:8000 or <device-ip>:8000, login with username: admin, password: admin, and copy the device UUID.
...
Add the Gateway Navigate to the Gateways tab on your Cloud VMS platform and add the gateway using the UUID.
...
Adding Cameras
Add Uplink camera to the Cloud VMS platform using the camera’s Serial Number and MAC Address.
Add camera to Gateway using the same information.
Navigate to Gateway main page and click start on the corresponding camera in the cameras list.
The camera should now be online on Cloud VMS platformNavigate to Gateway tab in Cloud One and select the gateway you would like to add a camera to.
Select the ‘Add Camera To Gateway’ button and fill out the camera information form.
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
Execute the stop script.
Code Block ./stop.sh
...