website/content/blog/clearingsystemdlogs.md

532 B

date draft medium_enabled medium_post_id tags title
2021-02-21 21:08:51 false true acf4ee0e7f0c
Linux
Clearing Systemd Logs

Short post today. I wanted to clear out some disk space usage on one of my servers and noticed that the systemd logs were taking up a decent bit. Here are two options to clear out old logs.

Here is an example to do it by time, let's say 15 days:

journalctl --vacuum-time=15d

An example to clear it by total disk usage, let's say 10Gb:

journalctl --vacuum-size=10G