Table of contents
Many traditional hosting providers offer vast amounts of Storage, with options such as 100s of GB of data. This is a practice known as overselling, which is used to make the services appear better and larger than they actually are.
At Servebolt, we don’t oversell. Our storage solution is highly optimized for performance. We only use solid state disks (SSD) or NVME in a RAID 1 setup. This provides our customers with high-speed read/write performance, both for regular files and databases. It also allows one drive to fail and be replaced without any service disruption or performance loss.
Our hosting packages begin at 10GB, namely our Pro plan. These 10GB are more than enough for most of our customers and their websites and e-commerce sites.
If you find yourself running out of storage, we offer two options.
How to add storage
The first one is the easiest. On the dashboard view of your Bolt, you’ll find the option to update your plan or head over to the Plan & Billing section. When you click on that button, you’ll find the options available for your plan. There you’ll see the options to upgrade to a plan with more storage. The amount of storage you can use depends on the plan you’ve selected for your subscription.
However, you can also add storage to your current plan via the “Active plan and addons” section on the Plan & billing page.

Manage disk usage through SSH
The second option requires a bit more work and requires some investigation. This option will help you remove unnecessary items and as such make more storage available within your current plan.
Time needed: 15 minutes
Follow the following steps to manage your disk usage via SSH
- Turn on SSH access
Ensure that SSH access is enabled in the Admin Panel: Connecting using SSH.
- Log in using SSH
Use the information provided in the site registration email to log into your site via SSH.
- Check disk usage in directories
Run the following command through the terminal:
du -hd 1.
This will provide a list of all underlying directories and their corresponding disk usage. You can then navigate into a directory and repeat the command to exactly “pin down” where most data is being stored withcd [directoryname] - Find large files
Run the following command through the terminal:
find ~/ -size +10M -ls
This will give you a list of all files larger than 10MB on the host. You can adjust the file size in the command to fit your needs. - Sort large files
Once you’ve found the directory with the most data, and navigated into it using the
cdcommand, run the following command to list all files in the directory according to size (with the largest file in the end).ls -lSr - Remove large files
To remove files, use the rm command like this:
rm -f [filename]
What files can I delete?
Many times, when we’ve cleaned out customers’ websites, we’ve noticed that the following types of files are unnecessarily stored.
- Database and file backups, often automatically generated by plugins
- Cache files, in WordPress, often stored under
/wp-content/cache/ - Manually compressed files/directories, ending with
.zip,.tar.gzor.tgz
Manage disk usage through SFTP
SFTP have not been mentioned previously as SFTP clients like FileZilla don’t provide a good method of checking storage for a site like SSH does. Files can still be deleted with the use of SFTP-clients after you login to your site if needed.
If you want to clean out files and are unsure whether they are necessary, feel free to contact our customer support. And of course, you can always easily upgrade to a Plan with more storage through our Admin Panel.