Last Modified: Jun 19, 2025
Affected Product(s):
BIG-IQ Platform
Known Affected Versions:
7.1.0, 7.1.0.1, 7.1.0.2, 7.1.0.3, 7.1.6, 7.1.6.1, 7.1.7, 7.1.7.1, 7.1.7.2, 7.1.8, 7.1.8.1, 7.1.8.2, 7.1.8.3, 7.1.8.4, 7.1.8.5, 7.1.9, 7.1.9.7, 7.1.9.8, 7.1.9.9
Opened: Mar 04, 2021 Severity: 3-Major
Postgresql logs can accumulate in /var/log, triggering disk full threshold warnings.
If /var/log fills then the system will be unable to log more to the disk.
- BIG-IQ is running a version which uses postgres, such as 7.0 or higher. - Files in /var/log/postgres/ are occupying too much space on disk.
Periodically remove old files from /var/log/postgres. For example, to remove files over than 10 days, you can use: find /var/log/postgres/ -type f -mtime +10 -name '*.log' -execdir rm -- '{}' \;"
None