Problem:
You’re running out of space
Solution:
In terminal:
find files over 200MB:
find / -type f -size +200M -exec du -h {} + 2>/dev/null | sort -r -h
find top 20 largest directories in the dumps folder:
du -a /var/lib/psa/dumps/clients/* | sort -n -r | head -n 20