Skip to content

Administrate the Output Engine Services


The services of an Output Engine system can be administrated by PLOSSYS CLI.


Requirements

For the requirements for using PLOSSYS CLI, refer to PLOSSYS CLI.


Commands

Check the Status of the Complete Output Engine System

plossys service status

Check the Statuses of Specific Output Engine Services

plossys service status <service_name_1> <service_name_2> ... <service_name_n>

Start the Complete Output Engine System

plossys service start

Start Specific Output Engine Services

plossys service start <service_name_1> <service_name_2> ... <service_name_n>

Stop the Output Engine System

The following command stopps all services belonging to PLOSSYS Output Engine. The third-party components such as MongoDB, Consul and NATS will be still running.

plossys service stop

Stop the Output Engine System Including the Third-Party Components

The following command stopps all services belonging to PLOSSYS Output Engine and the third-party components such as MongoDB, Consul and NATS.

plossys service stop --full

Stop Specific Output Engine Services

plossys service stop <service_name_1> <service_name_2> ... <service_name_n>

Restart the Complete Output Engine System

plossys service stop --full
plossys service start

Restart Specific Output Engine Services

plossys service stop <service_name_1> <service_name_2> ... <service_name_n>
plossys service start <service_name_1> <service_name_2> ... <service_name_n>

Back to top