mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
1.5 KiB
1.5 KiB
logrotate
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
- Any of the universal error types.