Adjust your journal so it generates logs easier
Posted: Fri Aug 08, 2025 10:18 pm
in the file, /etc/systemd/journald.conf you can uncomment and set the following setting:
SystemMaxUse=50M
Afterwards roll a systemctl restart systemd-journald
This will make your evernode logs easier to be read.
quick oneliner
SystemMaxUse=50M
Afterwards roll a systemctl restart systemd-journald
This will make your evernode logs easier to be read.
quick oneliner
Code: Select all
sudo sed -i 's/^#SystemMaxUse=.*/SystemMaxUse=50M/' /etc/systemd/journald.conf && sudo systemctl restart systemd-journald