RDK Resources
[*RDK Preferred*]
Code Management Facility
RDK Forums
[RDK Conferences]
RDK Support
Archives
Papers & Presentations Archive
This document provides the deployment steps for setting up Device Manager UI server and all its dependencies.
For setting up this server the below applications or tools should be available in the server machine:
If you already have an existing setup of Automatics you can follow the steps in this page for upgrading the software's Automatics Technology Stack - Upgrade
Please note that even though the recommended version of Orchestration is JDK17, it is reverse compatible with JDK11 also. So code also be compiled with JDK11. Follow Steps below to install Java 17 on CentOS/linux.
sudo yum -y update
sudo yum install java-17-openjdk
java -version
Sample output:
Follow below steps to install and configure MariaDB on CentOS/linux
All the packages need to be up-to-date. Use the following command to update your packages.
sudo yum update
Create a new repo file for the latest version.
vi /etc/yum.repos.d/MariaDB.repo
Copy and paste the following contents into the /etc/yum.repos.d/mariadb.repo file.
[mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.11/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
To exit and save the Vim file, type :wq and press Enter.
Install 10.11 of MariaDB and the most common packages, using the command below.
sudo yum install MariaDB-server galera-4 MariaDB-client MariaDB-shared MariaDB-backup MariaDB-common
Start the MariaDB service with this command.
sudo systemctl start mariadb
To set MariaDB to start automatically when the VM boots up, use the following command.
sudo systemctl enable mariadb
Check the current status of MariaDB using this command.
sudo systemctl status mariadb
Check the currently installed MariaDB version with this command.
sudo mysql -u root -p -V
Follow below Steps to setup Tomcat server on CentOs/linux.
wget -c https://downloads.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz
sudo tar -xvf apache-tomcat-9.0.85.tar.gz -C /opt/automatics/
Sample Output:
Maven – 3
Maven is the tool used for building and managing Device Manager project. Please follow the below links to download and install Maven:
Following page will provide the detailed steps to setup maven.
Automatics Orchestration Setup#Maven3
Device Manager Back End Server
Device Manager Server is REST API based tool to manage different device details , add & edit device details, device groups etc. Device Manager UI is an application for visualizing and perform actions on different functionalities of device manager backend server.
Please refer below link to know more about device manager setup and deployment.
Device Manager Deployment Document
Following are the steps to be followed to setup Device Manager UI and its dependent software's in a Machine:
Build the .war file of Device Manager UI using Maven 3 and JDK 8.
To do this follow the below steps:
Example:
Device Manager application should be deployed in Tomcat server (ver 8.5 or above). Follow the below steps to deploy the application.
Following page will provide more information on device manager ui
2 Comments
Z-Gilles Printemps
Login failed!!!
Z-Gilles Printemps
FYI, error mentioned previously is related to the usage of "https" in the URL.
- DEVICE_MANAGER_BASE_URL=http://localhost:8080/DeviceManager
>> Access to the page / No Error
- DEVICE_MANAGER_BASE_URL=https://localhost:8080/DeviceManager
>> Error (See stack trace in my previous message] / Access denied