Unlike the typicall systemctl used for service management. The host comes installed with supervisorctl to handle services.
This page provides a simple overview of the usage for supervisorctl.
To list all services, run the command below.
This will start an interactive terminal, to get out of it just run exit
The commands below can be used to start and stop your services.
To check if your service is running and get details like uptime and the PID you can use the command below.
First edit the supervisord config file using the nano command
Add the following configuration to the end of the file.
This example is for running a mysql deamon.
Be sure to change the values to suit your service.
Save the changes made to the configuration file by pressing (CTL + S) to save and then (CTL + X) to exit.
Once configuration is complete, reload supervisorctl with the changes using the commands below.
Now the next time your host boots up it should start the service along with the other services.