- On bare metal, hardware failure is a when, not an if.
- This guide shows how to detect failures early, what your provider SLA really covers, and how to write a recovery runbook that works at 3 AM.
Renting a dedicated server means the provider owns the hardware problem โ but you still own the downtime. Disks fail at roughly 1โ2% annually, and RAM, power supplies and network cards add their own failure modes. The difference between a 20-minute blip and a lost day is whether you wrote a response plan before the pager went off.
Know Your Failure Modes
| Component | Typical symptom | Usual fix |
|---|---|---|
| Disk / SSD | SMART errors, I/O stalls, degraded RAID | Hot swap + RAID rebuild |
| RAM | Random crashes, ECC corrected-error logs | DIMM replacement |
| PSU / mainboard | Sudden power loss, no POST | Part swap or chassis migration |
| NIC / uplink | Packet loss, link flaps | Port/cable/NIC replacement |
Detection: Failures Announce Themselves Early
Most disk failures give days of warning. Monitor SMART attributes (reallocated sectors, pending sectors, NVMe media errors), RAID state, and ECC memory logs, and alert on any change. A degraded RAID array that nobody notices is the classic path to real data loss โ the second disk fails during the rebuild you never started.
Understand What Your Provider SLA Covers
Read the fine print before an incident. Key questions: What is the guaranteed hardware replacement time โ one hour, four hours, next business day? Does the clock start at your ticket or at their diagnosis? Is a failed disk returned or destroyed (important for compliance)? Can they move your disks to a new chassis if the mainboard dies? Knowing the answers shapes your architecture: a 4-hour replacement SLA is fine for a redundant pair, risky for a single production box.
Write the 3 AM Runbook
- Confirm the failure from monitoring and IPMI logs โ do not reboot blindly.
- If storage is involved, freeze writes where possible and snapshot application state.
- Open the provider ticket with serials and error logs attached to skip triage rounds.
- Fail traffic over to your standby, VPS or cloud fallback if recovery will exceed your downtime budget.
- After replacement, rebuild RAID, verify data integrity, and write a short post-mortem.
Architecture Beats Heroics
The cheapest insurance is boring: RAID1 or RAID10 on every production server, off-server backups tested monthly, configuration in Ansible so a replacement server can be rebuilt in under an hour, and for critical workloads a second server in another datacenter behind failover DNS. Hardware then becomes a component you replace, not an emergency you survive.
Frequently Asked Questions
Who pays for failed hardware?
The provider. With rented dedicated servers, parts and replacement labor are included โ you pay only in downtime, which planning minimizes.
How fast does a RAID rebuild finish?
Roughly 1โ4 hours per terabyte depending on disk type and load. NVMe rebuilds are far faster than large HDDs, which is one reason to prefer several smaller drives.
Should I keep a warm standby server?
If an hour of downtime costs more than a second server, yes. Many teams keep a smaller standby that can run a degraded version of the service.
Build on hardware with real replacement SLAs โ see our dedicated server range or ask about redundant setups.