You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »


Introduction

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

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 REST API Server

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.

Steps to setup device manager 

  • Setup device manager Rest API Server application

Refer Device Manager Deployment Document to get the detailed steps on how to setup Device Manager Rest API Server.

    • If Device Manager Rest API Server Application is already setup .Please follow below steps to update REST API server application.
      • Connect to device_manager DB using MYSQL command line.

Commands :


mysql> use  device_manager;  -- For connecting to device_manager DB


      • Run below queries to update password variable length and update password , email details for admin user. 

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


    • Build device manager Rest API server .war file .

Following page will provide details to build .war file

Device Manager Deployment Document#BuildDeviceManager.warfile 

    • Deploy War File on tomcat server

Following page will provide details to deploy war file 

Device Manager Deployment Document#DeployDeviceManagerapplication


  • Setup device manager UI application.

Refer  Device Manager UI Deployment Document to get the detailed steps on how to setup Device Manager Rest API Server.




  • No labels