RDK Resources
[*RDK Preferred*]
Code Management Facility
RDK Forums
[RDK Conferences]
RDK Support
Archives
Papers & Presentations Archive
Device Manager is used by Automatics Tool to work as an inventory of devices by providing device details , managing device details ,and so on. Device Manager consists of UI application and REST API server application.
Below Flow chart provide the interaction flow between UI application and REST API Server application
Device Manager UI is an user interface application designed to interact with the Device Manager REST API Tool to manage device details. This tool is designed to provide user interface to manage device details by internally calling Device Manager Rest APIs.
Device Manager Server is a REST API based tool that manages device details. It provides implementation of Device Management APIs required to manage device details and also APIS used by Automatics Orchestration and Automatics Core with basic data available in Device Manager.
Refer Device Manager Deployment Document to get the detailed steps on how to setup Device Manager Rest API Server.
Commands :
mysql> use device_manager; -- For connecting to device_manager DB
Commands :
mysql> ALTER TABLE user_details MODIFY PASSWORD VARCHAR(75); -- For updating password length for user details
mysql>UPDATE user_details SET PASSWORD = "" where USER_ID = "admin"; – for updating password value for admin user
mysql>UPDATE user_details SET EMAIL_ID = "" where USER_ID = "admin"; – for updating email id value for admin user
Following page will provide details to build .war file
Device Manager Deployment Document#BuildDeviceManager.warfile
Following page will provide details to deploy war file
Device Manager Deployment Document#DeployDeviceManagerapplication
Refer Device Manager UI Deployment Document to get the detailed steps on how to setup Device Manager Rest API Server.