Report this

What is the reason for this report?

Out of disk space too early

Posted on September 8, 2014
jimc

By jimc

My hard disk space has been gobbled up without me really installing much if anything. I had backups enabled and I disabled it before deleting the backups. Could they be sucking up all my disk space? I looked in my log directory and nothing in there is very big. I’ve done apt-get clean, auto clean, etc.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Issue the command below to see what folder is using up most space

du -sh /*

That should give a summary of what folder is the largest. It won’t be an instant result, give the command time to run.

logrotate is the utility that automatically compresses old log files. You can also configure it to delete older logs. Edit the file /etc/logrotate.d/apache2 It will look like:

/var/log/apache2/*.log {
        weekly
        missingok
        rotate 52
        compress
        delaycompress
        notifempty
        create 640 root adm
        sharedscripts
        postrotate
                if /etc/init.d/apache2 status > /dev/null ; then \
                    /etc/init.d/apache2 reload > /dev/null; \
                fi;
        endscript
        prerotate
                if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
                        run-parts /etc/logrotate.d/httpd-prerotate; \
                fi; \
        endscript
}

Add maxage 14 to delete logs older than two weeks.

It’s possible that the backups could be consuming a significant amount of disk space, even if you’ve disabled them. When backups are made, they can take up space either in a designated backup directory or in temporary files that might not be automatically deleted when the backups are disabled or deleted.

On top of what’s already been mentioned you can check our article on how to fix disk space issues on your droplet here:

https://docs.digitalocean.com/support/how-do-i-fix-disk-space-issues-on-my-droplet/

Regards

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.