Versions Compared

Key

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

...

This microservice uses the Automatics Orchestration database, so for the microservice server to start UP it should have access to Automatics Orchestration and the below mentioned tables should be available in that database.

Microservice Setup

...

  1. Add the URL, username and password  password of Automatics MYSQL Database in the application.properties file(/src/main/resources/).
  2. The password should be entered in base 64 encrypted format.
  3. Use the command "mvn clean install" to build the .jar file of the microservice.
  4. Copy the rackdataservice-1.0.0.jar of rackdataservice to the VM in which it is running and run the below command to make the server UP
  5. The command to bring the microservice up in server is mentioned in the below snippet.

    Code Block
    nohup java -XX:+UseSerialGC -Dlog4j2.formatMsgNoLookups=true -jar rackdataservice.jar > logfile.log 2>&1 &

...