- Reference >
- Database Commands >
- Administration Commands >
- logRotate
logRotate¶
On this page
Definition¶
-
logRotate¶ The
logRotatecommand is an administrative command that allows you to rotate the MongoDB logs to prevent a single logfile from consuming too much disk space.You must issue the
logRotatecommand against the admin database in the form:Note
Your
mongodinstance needs to be running with the--logpath [file]option.You may also rotate the logs by sending a
SIGUSR1signal to themongodprocess. If yourmongodhas a process ID of 2200, here’s how to send the signal on Linux:
Behavior¶
Changed in version 3.0.0.
The systemLog.logRotate setting or --logRotate option
specify logRotate’s behavior.
When systemLog.logRotate or --logRotate are set to
rename, logRotate renames the existing log file by
appending the current timestamp to the filename. The appended timestamp
has the following form:
Then logRotate creates a new log file with the same
name as originally specified by the systemLog.path setting to
mongod or mongos.
When systemLog.logRotate or --logRotate are set to
reopen, logRotate follows the typical Linux/Unix
behavior, and simply closes the log file, and then reopens a log file
with the same name. With reopen, mongod expects that
another process renames the file prior to the rotation, and that the
reopen results in the creation of a new file.