Problem
Info |
---|
The appliance is down, The reason is the disk is full on the appliance. |
Reproduction/Solution
From the appliance, Run the df command to to initially check space on appliance disk looking for usage at or close to 100%
...
Code Block |
---|
# Check disk usage command (du) at the root level du -a / | sort -n -r | head -n 5 |
...
Info |
---|
remember o to check other locations as well |
...
Code Block |
---|
# Force removal of all teh syslog files and any subfolders. Note: use rm command with care. sudo rm -rf /var/log/syslog* # reboot appliance sudo shutdown -r now |
...