status / services

CLI REST-API

start

start [service]
The "start" command will start the service process if it is not already running. Please note
that a network service has to be enabled for each virtual interface in order to be
accessible via the IP address(es) of that interface. That means that even when you
start a specific service but did not enable it on any virtual interface, it will not be
usable for remote hosts.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "service": "https"
    }
}
NameValueDescriptionExample
servicehttps
See also:
/status/services: services
/status/services/stop: stop a service if it is not already running
/status/services/status: check if the service is running
/status/services/restart: stop and start the service

REST-API Support:


This command is supported by the REST API:

Method: PUT
URL: /api/status/services/start
Body:
{
    "parameters": {
        "service": [service]
    }
}

Example using curl:
curl -X PUT /api/status/services/start -d 
"{
    \"parameters\": {
        \"service\": \"https\"
    }
}"