This is documentation for Semarchy xDI 2024.2, which is no longer actively maintained.

For more information, see our Global Support and Maintenance Policy.

Service management commands

get services

This command shows status information for the runtime services.

get services [name <service_name>] [format <format>]
Option Mandatory Description

name <service_name>

No

Returns information for a specified service only. When unset, returns information for all services.

format <format>

No

Show comma-separated columns in the output, with the specified format. The available columns are %name, %status, %duration.

Example 1. Get the list of services with their status
get services format %name,%status

rdbms,Running
execution,Stopped
soap,Running
listener,Running
scheduler,Running

restart service

This commands restarts a runtime service. Use the get services command to retrieve a list of available services.

Restarting a service does not restart its running tasks. For example, restarting the execution service does not stop and start active sessions.

restart <service_name> service

soap server

This command manages the SOAP Server. You can instruct it to start, stop, or build server content.

soap server [build | start | stop]

start service

This commands starts a runtime service. Use the get services command to retrieve a list of available services.

start <service_name> service

stop service

This commands stops a runtime service. Use the get services command to retrieve a list of available services.

Stopping a service does not stop its running tasks. For example, stopping the execution service does not stop active sessions.

stop <service_name> service