To start, stop, restart or check status of service on VCSA, use the following command:

**Check status of services: **

service-control --status --all

**Start specific service: **

service-control --start <sericename>

**Start all services: **

service-control --start --all

**Stop specific service: **

service-control --stop <sericename>

**Stop all services: **

service-control --stop --all

**Restart all services: **

service-control --stop --all && service-control --start --all