Aria Automation is down.
Aria Automation 8.16
When 'VMware Identity Manager Cluster Auto-Recovery' feature runs, it creates multiple pgservice.log.backup files under the /var/log/pgService filling out the space in this directory (and hence the root directory) causing the Postgres Service down.
1. Delete manually the pgService.log.backup files
2. Can create a cron job by creating job in with crontab file.:
edit the crontab:
(using command - crontab -e) and pasting this line:
0 * * * * rm /var/log/pgService/*.backup <--- removes the current backup file
0 * * * * /usr/sbin/logrotate /etc/logrotate.d/pgservicelog
systemctl restart crond