Metropolis Microservices Platform services Starting and stopping
Table of Contents
[Sticky]
All of the Platform services can be started and stopped using systemctl, as all of them are implemented as a standard Linux service.
To start and stop any service:
sudo systemctl start <service-name> sudo systemctl stop <service-name>
To set the services so that they start at every boot, the following command can be used:
sudo systemctl enable <service-name>
To disable it:
sudo systemctl disable <service-name>