← Field guide ← Stop 6: Add the Padlock
Stop 7 of 7 · Last one!

Keep It Happy

Everything's live. Now the quiet part: a few small habits keep it that way, without watching it constantly.

The habit

Keeping it running is your job now

That sounds bigger than it is.

It's not a full-time job — just a small handful of habits, done every so often, that keep your VPS from ever becoming a problem.

1 Habit One

Back it up

This is the single most important habit on this whole page.

Providers usually sell a one-click, whole-machine snapshot for a few dollars a month — worth it down the road, but not required. For free, right now, you can cover the part that matters most: your website's own files.

On your VPS, zip the website folder into your home directory:

  1. 1Run that command every so often, and always before any risky change.
  2. 2Open your usual SFTP program, connect to your VPS the same way you connect anywhere else, and download that .tar.gz file to your PC.
  3. 3If your website's files ever get wiped or corrupted, that download is your way back.
2 Habit Two

Let updates install themselves

You already know apt update && apt upgrade from Stop 3. Rather than remembering to run it, let Ubuntu apply security updates on its own, quietly, in the background.

That's it — one setup, and it keeps patching itself against known security holes without you lifting a finger.

3 Habit Three

Peek in every so often

No need to watch it daily. Every few weeks, two quick checks:

1. Visit your own site. If it loads, you're 90% of the way to "everything's fine."

2. Check it isn't running out of space:

Anywhere under about 80% used is comfortable. Climbing past that is your cue to look at what's taking up room.

The safety net

You can't truly get locked out

Even if SSH stops working, even if you break something badly — that web control panel from your provider always has a way back in: a button to reboot, and often a rescue console that opens a screen straight into the machine, no SSH required.

Worst case: rebuild the server from this guide and restore your website's files from your last backup.

Recap

The whole ongoing job

  • Back up your website fileszip /var/www/html, download it over SFTP
  • Unattended security upgrades are onpatches itself, quietly
  • A quick look-in every few weeksvisit the site, check df -h
  • You know where the rescue button livesin your provider's control panel
The whole trail

Every stop, walked

Get your VPS Get inside Lock the doors Build a home Hang the sign Add the padlock Keep it happy

You did it. 🎉

This guide started as one beginner figuring it out. It ends as something the next beginner can follow, start to finish — because you just walked the whole thing yourself.

← Back to the Field Guide

My Very First VPS · Stop 7 of 7 · the end of the trail