Most official/best-practice way to reduce the amount logging?

nebyneb2357

New Member
Apr 6, 2024
10
3
3
I know that I can disable some write-heavy services like:
pve-ha-crm.service
pve-ha-lrm.service
corosync.service
Are there any others I can disable? I don't plan to ever run HA or a cluster, so I will just be using a single node.

Method 1: log2ram
Method 2: Append this to /etc/systemd/journald.conf:
Code:
Storage=volatile
ForwardToSyslog=no
Discovered by this comment on Reddit.

I don't really care about logs/graphs of useless things, only things that are crucial like drive health, etc. TIA!