EQVPS

Run your own Bitcoin node on a VPS

Jul 5, 2026 · 3 min read · EQVPS Team

Running your own node is the line between taking someone's word about the chain and verifying it yourself. Your node enforces every consensus rule independently, and your wallets can query your node instead of a public server that quietly logs all your addresses. The wall people hit: a full archival node wants 600 GB+ of disk and keeps growing. A pruned node steps around that — it still validates the entire chain, then discards the old blocks it no longer needs, landing around 10–15 GB. That fits a small VPS. Here's the honest how, and what pruning costs you.

What a node actually gives you

Pruned vs full — the honest core

During the initial sync, your node downloads and verifies the entire chain. That's roughly 600 GB of bandwidth, once. Pruning changes only what happens after: it keeps recent blocks and drops the old ones, so final disk stays small.

What you give up is real: a pruned node can't serve historical blocks to other peers, and it can't rescan arbitrary old wallet history. So if you'll import an old wallet with early transactions, you need full history — a full node on a big disk, not a pruned one. For simply validating and running current wallets, pruned is exactly right.

What you need

The setup

Install bitcoind, then a minimal bitcoin.conf:

prune=10000        # keep ~10 GB of recent blocks
dbcache=2048       # faster initial sync; lower it later
listen=1           # accept inbound peers

Run it under systemd so it restarts on crash and comes back after a reboot, and open port 8333 so peers can reach you. Then let it sync — this is the long part, hours to a day or two, because it's verifying the whole chain from genesis.

Lock it down

The honest limits

Paying for it

Sign up with an email and pay in USDC or USDT — no card, no ID. A fitting way to pay for running your own corner of Bitcoin.

FAQ

Can I run a Bitcoin node on a small VPS?

Yes — a pruned one. It validates the entire chain during sync, then keeps only recent blocks (~10–15 GB), which fits a small box. A full archival node needs 600 GB+ and keeps growing.

Why do I need a dedicated IP for a node?

To accept inbound peer connections on port 8333 and actually contribute to the network. On a NAT plan you get one forwarded SSH port and can't open 8333; a dedicated IP makes your node reachable.

How long does the first sync take?

Hours to a day or two. Your node downloads and verifies the whole chain once (~600 GB of bandwidth), even though a pruned node doesn't keep all of it. That first pass is inherent — you can't skip it.

What can't a pruned node do?

Serve historical blocks to other peers, or rescan arbitrary old wallet history. If you plan to import a wallet with early transactions, use a full node with full history instead.

← Back to blogSee plans & pricing →