This is documentation for Plesk Onyx.
Go to documentation for the latest version, Plesk Obsidian.
Rebooting the Server
The reboot operation is used to reboot your server.
Request Packet Structure
The reboot operation is used to reboot your server.
A request XML packet (server_input.xsd
) that reboots the server:
<packet>
<server>
<reboot/>
</server>
</packet>
Note: The interactive schema navigator for all request packets is available here: http://plesk.github.io/api-schemas/1.6.8.0/agent_input.svg.
Response Packet
The reboot node of the output XML packet is of complex type
(server_output.xsd
) which has the following presentation:
Note: The interactive schema navigator for all response packets is available here: http://plesk.github.io/api-schemas/1.6.8.0/agent_output.svg.
-
result, required.
It wraps the result of the reboot operation. Data type:
resultType (
common.xsd
). - status, required. It returns the execution status of the operation. Data type: string. Allowed values: ok | error.
- errcode, required if the operation fails. Returns error code. Data type: unsignedInt.
- errtext, required if the operation fails. Returns error message. Data type: string.
Samples
This request reboots the server:
<packet>
<server>
<reboot/>
</server>
</packet>
Response:
<packet>
<server>
<reboot>
<result>
<status>ok</status>
</result>
</reboot>
</server>
</packet>