Files
2018-05-09 14:12:45 -07:00

1.5 KiB

logrotate

[Source]

The logrotate command closes and reopens the log file. This is intended to help with log rotation on Linux file systems.

The logrotate method is an admin command that cannot be run by unprivileged users.

Request Format

An example of the request format:

WebSocket

{
    "id": "lr1",
    "command": "logrotate"
}

Commandline

rippled logrotate

The request includes no parameters.

Response Format

An example of a successful response:

JSON-RPC

200 OK
{
   "result" : {
      "message" : "The log file was closed and reopened.",
      "status" : "success"
   }
}

Commandline

Loading: "/etc/rippled.cfg"
Connecting to 127.0.0.1:5005
{
   "result" : {
      "message" : "The log file was closed and reopened.",
      "status" : "success"
   }
}

The response follows the standard format, with a successful result containing the following fields:

Field Type Description
message String On success, contains the message The log file was closed and reopened.

Possible Errors