Service

List, Insert And Remove Orakl Network Services

The Orakl Network offers several solutions, and each of them has its own specific configuration (e.g. listener setting). Service configuration in the Orakl Network CLI, allows to define an arbitrary services that can be associated with higher level solution configuration.

The Orakl Network CLI provides commands to

List all services

To list all serviced registered in the Orakl Network state, run the command below.

orakl-cli service list

The example output after listing all services can be seen in the listing below. In this case, there are three services: VRF, DATA_FEED and REQUEST_RESPONSE.

[
  { "id": 1, "name": "VRF" },
  { "id": 2, "name": "DATA_FEED" },
  { "id": 3, "name": "REQUEST_RESPONSE" }
]

Insert New Service

A new service can be registered to the Orakl Network state with service insert command.

orakl-cli service insert \
    --name ${name}
  • example

orakl-cli service insert --name VRF

Remove Service Specified By id

Services that are not associated with any other configuration can be deleted given the service id.

orakl-cli service remove \
    --id ${id}
  • example

orakl-cli service remove --id 15

Last updated