Dedicated server hosting is the model where every resource of a single physical machine — CPU cores, RAM, disks, NIC, IPMI management port — is allocated to one tenant. The noisy neighbor problem of shared hosting, the hypervisor layer of VPS, and the shared host hardware of cloud servers are all gone here; the entire box is yours. That simple fact has decisive consequences for performance, security, compliance, and cost.
Related guides: Web hosting types and how to choose · VPS vs VDS guide · Cloud server guide · Linux server administration basics · Server security hardening · Nginx configuration
This article folds the dedicated server hosting, dedicated hosting service, dedicated server web hosting, and dedicated hosting search intents into a single comprehensive guide. Hardware selection, network and bandwidth planning, IPMI/iLO remote management, RAID choices, OS-level tuning, price ranges (approximate, varies by provider, 2026 data), SLA negotiation, and real deployment scenarios — we cover them all in order.
What Dedicated Server Hosting Is — and Isn't
A dedicated server is, literally, a physical server dedicated to a single customer. It sits in a rack inside a data center, ships with one or more CPUs, ECC RAM modules, NVMe/SSD/HDD drives, at least a 1 Gbps (frequently 10 Gbps) network port, remote console access via KVM/IPMI, and a manageable PDU power feed. On the software side you install bare metal: Linux/Windows Server directly on the hardware, or stack your own hypervisor (Proxmox, ESXi, KVM, Hyper-V) on top if you prefer.
It's equally important to clarify what this model isn't. A dedicated server is not a shared hosting account — it isn't split across hundreds of sites. It's not a VPS or VDS either — those are virtual machines whose underlying hardware is shared with other tenants. It's not a cloud server either — cloud is typically scalable virtual capacity across regions. A dedicated server is the hardware itself; the provider repairs it when it fails, but the entire capacity is yours.
When You Actually Need Dedicated
The decision to move to dedicated should be quantitative, not emotional. Across our infrastructure consulting engagements over the past three years, the five most common triggers are:
- Sustained high CPU/IO load: if your VPS spends most hours of the day above 70% CPU or iowait stays above 5%, you may be choking your virtual neighbors. The provider may be rate-limiting you. Dedicated removes that allocation pressure entirely.
- Latency-critical workloads: high-frequency trading simulations, real-time bidding, game servers, WebRTC SFU/MCU, video transcoding queues — hypervisor overhead and noisy neighbor effects eat your p99 latency alive.
- License optimization: Microsoft SQL Server Enterprise, Oracle DB, and some SAP modules are licensed per core. Spending the same money on 16 physical cores instead of 32 vCPUs can cut licensing in half.
- Compliance requirements: GDPR/KVKK, PCI-DSS, HIPAA, ISO 27001 — some audits require a physical isolation attestation. Single-tenant bare metal makes those controls much easier to defend than a shared host.
- High RAM requirements: a 256 GB+ Elasticsearch cluster, in-memory analytics, JVM heaps north of 128 GB — those configurations either don't exist on the VPS market or cost 2–3× what dedicated does.
If your site is doing 1,000–10,000 requests per minute and you're caching properly with LSCache or Redis, a well-configured VPS is usually enough. Before you migrate to dedicated, document the bottleneck on your current system with vmstat, iostat -x 1, top -H, perf top — that homework is non-negotiable.
Dedicated vs VPS vs Cloud
Choosing between the three models isn't only about price; control, scaling speed, isolation, and total cost of ownership (TCO) all matter. The list below summarizes the most critical differences.
- Resource guarantee: dedicated is 100% physical; VPS is open to overcommit; cloud often offers dedicated vCPU but RAM/IO is still shared.
- Scaling speed: cloud scales vertically/horizontally in minutes; VPS resize takes 5–30 min; new dedicated provisioning ranges from 1 hour (auction) to 5 business days.
- Hardware control: dedicated lets you pick disk model, NIC, RAID controller; cloud usually doesn't.
- Cost curve: for sustained 24/7 load dedicated is cheapest; for bursty/variable load cloud is more economical.
- Operational burden: cloud comes with managed services (RDS, ALB); on dedicated, OS, RAID, and BIOS updates are your problem (unless you buy a managed package).
- Isolation: bare metal is the strongest; VMs are isolated at the hypervisor level but not entirely immune to side-channel attacks (Spectre/Meltdown class).
- Bandwidth: dedicated is generally unmetered or has high quotas; cloud egress is billed per GB and gets expensive fast.
Our Nginx vs Apache article covers the web server choice; hardware selection should be evaluated independently of the software layer.
Hardware Anatomy: CPU
Picking a CPU for a dedicated server is never a one-line spec. Core count, base clock, turbo clock, socket count, NUMA topology, AVX-512 support, ECC RAM compatibility — every one of them affects real workload performance.
- AMD EPYC (Genoa, Bergamo, Turin): 32–128 cores, high memory bandwidth, multi-channel PCIe 5.0. Ideal for databases, virtualization, container farms. The price/performance leader in 2026.
- AMD Ryzen (Pro 7000 series, Threadripper): 8–16 cores, strong single-thread, 5+ GHz turbo. Great for single-thread-sensitive workloads like PHP, Node.js, and Ruby web apps.
- Intel Xeon Scalable (Sapphire Rapids, Emerald Rapids): AMX, AVX-512, QAT hardware acceleration. ML inference, video encode, and some enterprise software with Intel-only optimizations.
- ARM (Ampere Altra, AWS Graviton class): very low watts per core; unmatched in NVMe and network I/O. Some providers offer dedicated ARM lines.
- Intel Xeon E (entry): 4–8 cores, economical, plenty for small-to-mid web sites and application servers.
An important practical rule: more cores doesn't always mean more performance. Single-thread-heavy code (traditional PHP, a Node.js event loop on one connection) runs faster on a high-frequency 8-core Ryzen than on a 32-core EPYC at lower clocks. Profile your workload with perf stat and flamegraph first — look at the actual workload, not core count or watts in isolation.
Hardware Anatomy: RAM
On dedicated, RAM is critical along two axes: capacity and ECC. Modern enterprise servers almost universally use ECC (Error-Correcting Code) RAM — single-bit errors are corrected automatically, multi-bit errors are reported. "Cheap" dedicated packages with consumer-grade non-ECC memory have unacceptably high silent data corruption rates over a year; they're intolerable for any system holding financial, e-commerce, or healthcare data.
Practical sizing guidance:
- Web/application server: 5–10 MB per concurrent connection. For 500 concurrent PHP-FPM workers, plan 4–8 GB; for the Node.js V8 heap, allocate ~75% of RAM via
--max-old-space-size. - Database server: for PostgreSQL set
shared_buffersto 25% of RAM and leave the rest for the OS page cache. For MySQL InnoDB setinnodb_buffer_pool_sizeto 70–80% of RAM. - Caching server: for Redis/Memcached plan RAM = working set × 1.4 (overhead + persistence).
- Search engine: keep the Elasticsearch JVM heap at no more than 50% of RAM and never above 31 GB (compressed-oops cap).
- Hypervisor: reserve 4–8 GB of host RAM for Proxmox/ESXi and split the remainder across VMs. Only enable memory ballooning in dev environments.
Hardware Anatomy: Storage
Disk choice is the single biggest performance variable on a modern server. If you're buying new dedicated in 2026, the default is NVMe SSD; SATA SSD is the second-tier choice, and spinning disks (HDD) only make sense for high-capacity backup or archive.
- NVMe (PCIe 4.0/5.0): 6–14 GB/s sequential read, 1M+ random 4K IOPS. The first-line choice for databases, log-heavy applications, search indexes, and caching layers.
- SATA SSD: 500–550 MB/s, 50–90K IOPS. Good enough as a general-purpose application disk and cheaper than NVMe.
- SAS HDD (10K/15K rpm): 150–250 MB/s, low IOPS (~150–200). A choice to avoid in modern workloads.
- SATA HDD (7.2K rpm): 150–200 MB/s sequential, ~80 IOPS. Only for archive/backup or 50TB+ bulk storage.
- Optane / SCM (storage class memory): low-latency (<10µs) writes, niche use for log writes or WAL — Intel narrowed the product line after 2025; NVMe + battery-backed cache is a viable alternative.
Sizing rule of thumb: instead of buying disks equal to hot working set × 1.5, buy hot working set × 5. Filesystem performance degrades once utilization passes 80% (especially CoW filesystems — ZFS, Btrfs).
RAID Choice: The Performance, Durability, Cost Triangle
RAID (Redundant Array of Independent Disks) is fault tolerance, not backup. Your data survives a single disk failure — but human error, ransomware, or corrupted software can rot the entire array. RAID + offsite backup is an inseparable pair. See our database backup strategies guide for the full picture.
- RAID 0: stripe, no fault tolerance, highest performance, highest risk. Only for reproducible data (cache, transient build artifacts).
- RAID 1: mirror, 2 disks, 50% usable capacity. A clean choice for boot disks or small DB servers.
- RAID 5: stripe + single parity. 3+ disks. Survives one disk failure. On large disks, rebuild time runs 10–30 hours — and a second failure during rebuild kills the entire array. Don't use it on new deployments.
- RAID 6: stripe + double parity. 4+ disks. Survives two disk failures. The replacement for RAID 5 on large HDD arrays.
- RAID 10: mirror + stripe (1+0). Even disk count, 50% capacity. Highest durability + performance. The gold standard for database servers.
- ZFS RAIDZ-2/RAIDZ-3: software RAID with checksums, snapshots, and replication. The modern choice for storage servers.
Network and Bandwidth
Bandwidth is measured along two axes: port speed (1/10/25/40/100 Gbps) and monthly traffic quota (in TB). In European hyperscaler data centers 1 Gbps unmetered is the price-entry tier; 10 Gbps is now standard, while 25–100 Gbps is for specialized workloads.
- 1 Gbps unmetered: more than enough for a typical web/app server. Theoretical monthly cap ~324 TB.
- 10 Gbps + 30–100 TB quota: typical for video/CDN origin, file sharing, and game servers.
- 10 Gbps unmetered: the standard package at some European providers; priced as premium in the US.
- 25/40/100 Gbps: storage backends, HPC cluster interconnect, video encode farms.
- Private network (vRack/iLO): free internal networking between your servers — essential for DB replication and cluster traffic.
DDoS protection is now a feature most bare-metal providers offer by default. For Layer 3/4 attacks (SYN flood, UDP amplification, ICMP flood) provider-side scrubbing is sufficient. For Layer 7 (HTTP flood, slowloris) you need additional multi-layer DDoS protection.
IPMI, iLO, iDRAC: Out-of-Band Management
One of the hardest-to-replicate advantages bare metal has over cloud is out-of-band management. Even if the server hangs, the OS won't boot, or the BIOS errors out, a separate BMC (Baseboard Management Controller) chip lets you open a remote console, mount a virtual CD/USB to reinstall, and power-cycle the box. The name varies by vendor: Dell calls it iDRAC, HPE iLO, Supermicro IPMI/SuperDoctor, Lenovo XCC.
Without that capability, a kernel panic or a misconfigured firewall rule leaves you at the mercy of the provider's remote-hands team — hours lost. Before you sign, always confirm whether IPMI/iLO access is included in the package. Premium providers include it; budget tiers may charge extra.
- Power control: soft reset, hard reset, power off, power cycle.
- Virtual media: mount an ISO and reinstall the OS — no physically shipping discs to the data center.
- Virtual console (KVM-over-IP): full screen access, including BIOS, GRUB, and kernel boot messages.
- Hardware sensors: CPU temperature, fan rpm, voltage, disk SMART data.
- SOL (Serial-over-LAN): scriptable command-line access.
- Firmware updates: BIOS, BMC, and NIC firmware updates independent of the OS.
Critical security warning: IPMI/BMC interfaces have a long track record of annual vulnerabilities (Supermicro USBAnywhere, HPE iLO authentication bypasses). Never expose a BMC to the public internet; put it on a separate management VLAN, behind a VPN, and change the default credentials on day one.
Choosing a Data Center Location
Three axes drive location selection: user proximity (latency), legal/compliance requirements, and price. For a Turkish-language e-commerce shop, Germany/Netherlands locations give 30–45 ms ping; Turkey data centers (Istanbul) sit at 5–15 ms. The real impact of latency shows less in raw RTT and more in TLS handshakes and DB round-trips.
- Turkey (Istanbul): easier KVKK posture; low latency to local payment systems. Local providers (Turhost, Natro, Hosting Dünyam, etc.) dominate this segment. Costs typically run 20–50% higher than Europe.
- Germany (Frankfurt, Nuremberg, Falkenstein): home of DE-CIX, Europe's largest internet exchange. Hetzner's primary region; best price/performance on the continent.
- Netherlands (Amsterdam): AMS-IX peering; low-latency European reach.
- Finland (Helsinki): cheap power thanks to renewable energy and a cold climate.
- USA (East: Ashburn/Virginia, West: California): proximity to US users; mind US data laws (CLOUD Act).
- Singapore, Tokyo: for APAC users. Sao Paulo: LATAM.
Turkish dedicated providers (Turhost, Natro, Hosting Dünyam, İsimTescil, etc.) typically host out of data centers near Istanbul Atatürk Airport or on the Anatolian side. In Europe, Hetzner, OVHcloud, Contabo, IONOS, and LeaseWeb lead on price. Hyperscaler dedicated alternatives (AWS Bare Metal, Azure Dedicated Host) sit in a different price segment and are usually bundled with managed cloud services.
Managed or Unmanaged?
This is the most underestimated piece of the bare-metal decision. Unmanaged dedicated means the provider only guarantees the hardware, network, and power. Installing the OS, patching it, hardening, backing up, monitoring, and troubleshooting — all of it is on you. With a managed tier, the provider takes on some or all of that systems administration load for an additional fee.
- Self-managed (unmanaged): cheapest; full control; requires advanced Linux/Windows expertise. The cost of mistakes is yours.
- Server-level managed: provider handles OS install, security patches, control panel (cPanel/Plesk), and basic firewall. Typically $40–150/month additional.
- Application-level managed: database tuning, PHP-FPM tuning, Nginx config, performance audits. $200–500+/month. Typical "managed WordPress" or "managed Magento" packages live here.
- Fully managed (white-glove): 24/7 NOC monitoring, incident response, security operations. Enterprise-grade, $500–2000/month range.
- DevOps-as-a-Service: CI/CD, IaC, observability — server-independent, but commonly added on top of dedicated.
The decision matrix is simple: do you have a full-time sysadmin or DevOps engineer on the team? If not, go managed; it'll cost less than one person-month. If you do, go unmanaged and put the savings into hardware. There's no safe middle ground — either you own the responsibility, or the provider does.
Operating System Choice and Provisioning
OS provisioning on bare metal happens one of three ways: automated installer (Ubuntu/Debian/AlmaLinux/Rocky/Windows from the provider panel — 5–15 min), PXE boot + kickstart/preseed (your own automation), or virtual media ISO mount (custom ISO via IPMI). Most professional teams take an Ansible/Terraform infrastructure-as-code approach and automate OS provisioning along with everything else.
- Ubuntu LTS (24.04 Noble): most widespread, broad community support, modern kernel. 5 years of updates.
- Debian (12 Bookworm): stable, lean, less package churn. Ubuntu's upstream.
- AlmaLinux 9 / Rocky Linux 9: RHEL-compatible, the right pick for enterprise software (Oracle DB, SAP).
- RHEL: paid, enterprise support; required for cPanel/WHM and certain vendor-warranted stacks.
- Proxmox VE: Debian-based, KVM + LXC; turn a dedicated into your own VPS farm.
- Windows Server 2022/2025: for SQL Server, ASP.NET, Active Directory, and Remote Desktop Services.
- FreeBSD / OpenBSD: niche but still strong; for high-security edge systems.
- Talos Linux: API-driven, immutable Kubernetes OS; ideal for modern container farms.
The first 30 minutes of provisioning should be standardized: SSH key login + password disabled, root login locked down, full system update, firewall (ufw/firewalld/nftables), Fail2ban install, automatic security patches, NTP sync, log forwarding. For the full checklist see our VPS security hardening guide — it applies equally to dedicated.
Disk Encryption and LUKS
Even though a dedicated server lives physically inside a data center, the provider's disposal process for failed drives may be inadequate. For sensitive data, disk encryption with LUKS (Linux Unified Key Setup) is mandatory. On modern AES-NI CPUs the performance penalty is 3–5%.
Backup: 3-2-1 on Bare Metal
The 3-2-1 backup rule (3 copies, 2 different media, 1 offsite) needs even more discipline on bare metal than in the cloud — because cloud snapshots are a single click, while bare-metal snapshots require LVM/ZFS/Btrfs configuration or aren't there at all. Our database backup strategies guide is the deep-dive reference.
- Local snapshot: ZFS
zfs snapshot, LVMlvcreate -s, Btrfsbtrfs sub snap. Fast rollback, but unprotected against disk failure. - Same DC, different server: rsync or restic to a second dedicated/storage server, daily replication. Unprotected against a DC-wide event.
- Offsite: a different provider or a different region. S3-compatible object storage (Cloudflare R2, Backblaze B2, Wasabi) with restic + rclone is a cheap solution.
- An untested backup is no backup at all: run monthly restore drills, measure RTO (recovery time objective) and RPO (recovery point objective).
- Immutable backup: object lock + versioning is non-negotiable against ransomware. Object Lock on Backblaze B2; Object Lock + Versioning on S3.
Monitoring and Observability
On bare metal there's no built-in cloud-provider dashboard; you either stand up the Prometheus + Grafana stack yourself or pay for a managed SaaS (Datadog, Grafana Cloud, New Relic). The minimum metrics to monitor:
- CPU: per-core utilization, run-queue, context switches.
- RAM: used, page cache, swap, OOM kill counts.
- Disk: per-device IOPS, latency, throughput, %util, queue depth.
- Network: pps, bps, drops, retransmits, TCP listen overflow.
- Hardware: CPU/board temperature, fan rpm, PSU watts, disk SMART status.
- Application: HTTP latency p50/p95/p99, error rate, 5xx ratio, queue depth.
- Business metrics: signups, payment success rate, user sessions — the business context for the technical numbers.
On the log side, Elastic Stack (ELK) or the lighter Loki + Promtail + Grafana stack are the usual choices. Critically, logs must live on a separate server, not on local disk. A compromised host can wipe its own logs.
Performance Tuning: OS Layer
Default Linux settings are conservative — the same defaults run on a tiny VPS as on a 256-core dedicated. If you don't open up those knobs on dedicated, you may be using only 30–50% of the hardware.
BBR (Bottleneck Bandwidth and RTT) congestion control, available since Linux 4.9, delivers a 2–25% throughput improvement over CUBIC on long-haul links. Pair it with the fq qdisc. For deeper network tuning examples, see our Nginx configuration guide.
Virtualization: Build Your Own VPS Farm
If you have several smaller workloads, virtualizing one beefy dedicated into your own VPS farm is the economical move. A typical 16-core/128 GB RAM dedicated comfortably runs 8–12 small production VMs. Three main options:
- Proxmox VE: open source, Debian-based, KVM + LXC + ZFS + Ceph integrated. Excellent web UI; high-availability clustering supported.
- VMware ESXi: licensing got complicated after the Broadcom acquisition; outside enterprise environments it's rarely preferred in 2026.
- Microsoft Hyper-V Server: for teams tied to the Windows ecosystem; strong Failover Clustering.
- oVirt / OLVM: Red Hat-derived open source enterprise virtualization.
- KVM + libvirt: lowest-level, most flexible; automation-friendly (Terraform libvirt provider, Ansible community.libvirt).
If containers are your primary workload, skip the virtualization layer altogether and deploy Docker Compose or Kubernetes directly on bare metal. Talos Linux + Kubernetes is the cleanest architecture for modern bare-metal Kubernetes.
Network Architecture: VLANs, Private Networks, BGP
A single public IP on a single dedicated may be enough, but as you grow the network architecture gets more involved. Modern providers offer:
- Public IPv4: usually 1 included; additional IPs cost $1–3/month (IPv4 prices climbed steadily through 2024–2026). IPv6 /64 is typically free and unlimited.
- Private network (vRack/iLO/InternalNet): free Layer 2 link between your servers. DB replication and internal API traffic should stay on this network.
- VLAN tagging: 802.1Q trunk to carry multiple logical networks over a single physical port.
- Floating/Failover IP: an IP movable between servers via API — a simple HA primitive.
- BGP session: announce your own ASN for multi-cloud and multi-DC redundancy. Enterprise feature, $50–500/month additional.
- Anycast: typically only available at large providers, used for edge proximity.
Web Server Stack Choice
Once you move to dedicated, it's worth re-evaluating your web server choice. Nginx is the versatile workhorse; Apache with mod_rewrite +.htaccess is convenient for PHP CMS ecosystems; OpenLiteSpeed/LiteSpeed Enterprise with LSCache is the fastest for WordPress; Caddy is the new kid with automatic HTTPS and clean syntax. For a deeper comparison see Nginx vs Apache.
Databases: Bare Metal's Headline Win
The clearest workload for which dedicated wins is the database. Hypervisor overhead, shared disk IO, and noisy neighbor latency all eat at the DB. Our PostgreSQL performance optimization guide drills into every parameter; here are a few dedicated-specific notes:
- Disk separation: put the WAL/redo log on a separate NVMe from the data disks. Use XFS instead of ext4, or — even better — ZFS datasets.
- Connection pooling: PgBouncer (transaction mode) or ProxySQL is non-negotiable. Direct PHP/Node connections are expensive even on bare metal.
- Replication: a single dedicated DB is a single point of failure. Set up at least one read replica with streaming replication.
- shared_buffers/buffer_pool: the conservative cloud default of 25% can be pushed to 40–50% on bare metal — there are no other tenants.
- Hugepages: tune
vm.nr_hugepagesfor large buffer pools; TLB misses drop, throughput climbs 5–10%. - NUMA pinning: on a 2-socket box, pin the DB process to a single NUMA node (
numactl --cpunodebind) — cross-socket latency disappears.
High Availability: One Dedicated Isn't Enough
No matter how powerful, a single dedicated server is a single point of failure. A disk failure, motherboard issue, kernel panic, or data center power outage — any one of them can knock you offline for hours. For production you need at least two dedicated, ideally in different racks or data centers.
- Active-passive: a second server in cold/warm standby. Failover IP or DNS-level switchover (TTL 60s).
- Active-active: 2+ servers behind a load balancer (HAProxy/NGINX). Easy for stateless apps.
- Database HA: Patroni + etcd (PostgreSQL), MySQL Group Replication, MariaDB Galera. Automatic failover and split-brain protection.
- Geo-redundant: replication across data centers. RPO/RTO are tuned accordingly.
- HA load balancer: HAProxy + keepalived for a VIP. Software is enough in most cases — no need for a hardware load balancer (F5, Citrix).
Security: The Bare-Metal Burden
In the cloud, the shared responsibility model gives you a clean line: provider handles physical and network security, you handle OS + application security. On dedicated, the line ends at hardware + network access — everything else is on you. OWASP Top 10 covers the application; at the server level, the minimum looks like:
- SSH key-only + 2FA: disable password SSH, require keys + (where possible) a YubiKey/FIDO2 second factor.
- Firewall + nftables: default deny, with a justified comment for every open port.
- Fail2ban: protects critical services like SSH, WordPress login, and IMAP from brute-force.
- Automatic patching:
unattended-upgrades(Debian/Ubuntu),dnf-automatic(RHEL). - Audit log:
auditdfor critical file changes and sudo usage. - SELinux/AppArmor: a MAC layer; sandboxes CMSes.
- Secrets management: HashiCorp Vault or systemd credentials; lock.env files to root-only.
- Vulnerability scanning: run Trivy, Lynis, OpenSCAP on a schedule.
- HTTPS certificates: automate with Let's Encrypt + Certbot.
- WAF: ModSecurity (CRS) or Cloudflare; for Layer 7 attacks.
BMC/IPMI security deserves its own mention — don't forget about it. A Shodan search for "IPMI default credentials" turns up hundreds of internet-exposed dedicated BMCs. They ship with defaults like ADMIN/ADMIN, root/calvin (Dell), Administrator/Password (HPE). Change them at first login, no exceptions.
Cost Modeling and TCO
Dedicated server prices vary widely with provider, hardware, and contract length. The figures below sketch the early-2026 market (approximate, varies by provider):
- Entry (4–8 cores, 32–64 GB RAM, 2× SSD/NVMe, 1 Gbps): €40–90/month in Europe, ~$45–100/month equivalent; ₺2,500–5,500/month in Turkey.
- Mid (12–24 cores, 64–128 GB RAM, 2× NVMe RAID, 1 Gbps): €90–180/month, ₺5,500–11,000/month in Turkey.
- High-end (32–64 cores, 256–512 GB RAM, 4× NVMe, 10 Gbps): €250–700/month, ₺15,000–40,000/month in Turkey.
- Storage (100+ TB HDD/SSD): €150–400/month, capacity-dependent.
- GPU dedicated (RTX 4090/5090, A100, H100): €500–3000/month, depends on GPU model and VRAM.
- Setup fee: 0 at most providers, or €30–150 (waived on long-term contracts).
In total cost of ownership (TCO), raw hardware rental is just the tip of the iceberg. You also have to factor in: extra IPs, licenses (cPanel ~$30/month, Plesk $14–65/month, Windows Server CALs, SQL Server licensing), additional bandwidth, snapshot/backup storage (~$0.005/GB on S3), sysadmin time (if you're not paying for managed), monitoring SaaS, SSL/EV certificates, and premium DDoS protection.
SLA and Contract Terms
Dedicated contracts can look like off-the-shelf packages, but the fine print matters. The SLA (Service Level Agreement) is the provider's uptime commitment and sets the compensation (usually a credit between 5% and 100% of the monthly fee).
- Uptime commitment: 99.9% (43 min outage/month) entry, 99.95% (22 min) standard, 99.99% (4 min) premium.
- Hardware replacement time: hourly (24/7) response on a disk failure, or next-business-day?
- Network SLA: latency and packet-loss guarantees are a separate clause.
- Acceptable Use Policy (AUP): there may be restrictions on mining, adult content, P2P seeding.
- Data center location: if it's not specified in the contract, the provider may move you to another DC.
- Term and cancellation penalty: monthly billing is usually the most expensive; 12–36 month prepay gets 15–30% off but the early-cancellation fee is steep.
- Refund policy: most providers say "no refunds on physical servers after sale" — a 24–48 hour trial-and-return may be possible.
Compliance: KVKK, PCI-DSS, ISO 27001
In Turkey, those processing personal data under KVKK must register in VERBIS. Cross-border transfers require explicit consent or an adequacy decision; that's why Turkey-based providers are preferred for that segment. PCI-DSS (cardholder data) is easier on bare metal — scope of compliance is simpler to bound in a single-tenant environment.
- ISO 27001-certified data center: Hetzner DCs, Equinix, and Türk Telekom Veri Merkezleri (Esenyurt) are certified.
- Tier levels (Uptime Institute): Tier III (99.982% uptime, concurrent maintainability) is enough for most enterprise use. Tier IV (99.995%, fault-tolerant) for finance/defense.
- SOC 2 Type II: certification for those working with US enterprise customers.
- HIPAA / HITRUST: required if you process healthcare data.
- GDPR + DPA: anyone with EU customers needs a Data Processing Agreement.
Migration: From VPS / Cloud to Dedicated
Migrating from an existing VPS or cloud server to dedicated runs in three phases: planning, testing, cutover. Risk areas to plan for:
- Lower DNS TTL: 48 hours before cutover, drop TTL to 300 seconds.
- Data sync: for large databases,
pg_basebackup+ WAL streaming, or Percona XtraBackup for MySQL. - File sync: initial rsync + delta rsync; for long-running sync use lsyncd or GlusterFS.
- License binding: cPanel account ID and Plesk license must be moved to the new IP.
- Health checks + smoke tests: monitor 5xx, latency, and error rate during the first 30 minutes.
- Rollback plan: keep the old system warm for 7–14 days after cutover.
GPU Dedicated and AI Workloads
Since 2024, GPU dedicated has been the fastest-growing segment of the bare-metal market. NVIDIA RTX 4090/5090, A4000–A6000, A100, H100, L40S; AMD MI300X — for training, fine-tuning, and inference. For self-hosted LLMs, computer vision, or video transcoding farms, dedicated typically pays back the cloud GPU hourly rate within 3–6 months.
- Inference-focused: a single L40S/A6000 serves a 70B-parameter model with FP8 quantization.
- Fine-tuning: 4–8× A100/H100 cluster + InfiniBand interconnect.
- Stable Diffusion / image generation: RTX 4090/5090, 24 GB VRAM; throughput-oriented.
- Video transcode: NVENC/AV1-capable RTX line; 10–30× faster than CPU-only farms.
- Driver/CUDA management: on bare metal, NVIDIA driver + CUDA + cuDNN + nvidia-container-toolkit installation has to be precise; Ubuntu 24.04 + datacenter driver R555+ is the standard image.
Common Mistakes and Pitfalls
Patterns we've seen repeat across a decade of dedicated administration:
- One server = single point of failure: putting production on a single dedicated. At least two servers + offsite backup.
- Public BMC: an exposed IPMI is hours away from data loss.
- RAID 5 in new deployments: rebuild times on modern large drives kill you.
- Not backing up — or not testing backups: "I have a backup" is only half. An untested restore is no restore.
- Wishful thinking on sizing: size for 2–3× current load; growing on bare metal takes hours to days.
- Forgetting the license budget: cPanel, Plesk, Windows, SQL Server licenses can cost more than the server.
- Delaying OS updates: apply kernel CVE patches within two weeks.
- Forgetting SSL: not putting the 90-day Let's Encrypt renewal in cron.
- Keeping monitoring on the server itself: when the server dies, where does the alert come from?
- Excessive over-provisioning: 256 GB RAM sitting 95% idle isn't a real problem — but it's a €5K overshoot.
Provider Selection Checklist
Questions to ask when evaluating a dedicated provider:
- What's the DC tier level? Is it ISO 27001 certified?
- What's the SLA hardware replacement time?
- Is IPMI/iLO access included or paid?
- Cost per extra IP? Is an IPv6 /64 included?
- Is bandwidth unmetered or quota-based? What happens when you exceed it?
- Is Layer 3/4 DDoS protection included? Is Layer 7 paid?
- Provisioning time (auction/used vs. brand new)? 5 minutes or 5 days?
- Are failover IPs or floating IPs supported?
- What's the contract length and cancellation penalty?
- Support channels (ticket / chat / phone) and response times?
- Is there a control panel/automation API? A Terraform provider?
- Are monitoring exporters (IPMI metrics, SMART) provided?
- Migration/onboarding support? Any help moving data from the old server?
- Billing in TRY/EUR/USD? Withholding/VAT situation?
- Quality of online community and documentation?
Advanced Topics: BGP, Anycast, Edge Compute
The move from a single dedicated to a multi-region edge architecture comes with organizational growth. Announcing your own ASN over BGP, beating global DNS latency with Anycast IPs, edge compute (Cloudflare Workers, Bunny Magic Containers) — they all start from a bare-metal backbone.
- RIPE/ARIN provider-independent block: rent or buy your own IP block.
- ASN allocation: RIPE membership or provider sponsorship.
- BGP session: multi-hop eBGP established with the provider router.
- Anycast: announce the same IP from multiple DCs to route to the closest PoP.
- RPKI: protect against prefix hijacking with Route Origin Authorization.
Which Dedicated for Which Scenario
To wrap up with concrete examples — here's what the theory looks like in real selection:
- High-traffic WordPress (news site, 5M monthly visits): 16-core Ryzen, 64 GB RAM, 2× 1 TB NVMe RAID 1, LiteSpeed + LSCache + Redis. A single server may be enough; with a CDN in front, the edge absorbs most of the load.
- E-commerce (Magento/WooCommerce, 50K+ SKUs): 2 servers — one Nginx + PHP-FPM (24 cores, 64 GB), one PostgreSQL + Redis (16 cores, 128 GB, NVMe RAID 10). HAProxy load balancing.
- SaaS application (multi-tenant Node.js/Postgres): 3 web (8 cores, 32 GB each) + 1 DB master (24 cores, 128 GB) + 1 read replica + 1 Redis. PgBouncer + read/write split.
- Game server (FPS/MMO): a single strong Ryzen 9 / EPYC, high frequency, low-latency network, anti-DDoS Game tier. Usually European or Turkish location.
- Video CDN origin: 2× servers, 100 TB SATA SSD RAID 6, 10 Gbps unmetered, behind a Bunny or CloudFront edge.
- ML/LLM inference: GPU dedicated (L40S or A6000), 256 GB RAM, NVMe SSD model storage, plus a separate CPU dedicated front-end.
- Data analytics (ClickHouse/PostgreSQL): 64-core EPYC, 256–512 GB RAM, 8× NVMe RAID 10. NUMA pinning is critical.
- VPS reseller / your own cloud: 2× Proxmox node (32 cores, 256 GB RAM, ZFS replication) with two-way live migration.
Resources and Further Reading
- Brendan Gregg — Linux Performance
- Arch Wiki — Sysctl reference
- Linux Kernel NUMA docs
- Kernel — block device tuning
- PostgreSQL resource configuration
- OpenZFS performance tuning
- Debian on Hetzner notes
- OVHcloud dedicated docs
- Intel network performance tuning
- RFC 8985 — RACK-TLP TCP loss detection
- RFC 9293 — Transmission Control Protocol
Related Articles
- Web hosting types and how to choose
- VPS vs VDS and VPS rental guide
- Cloud server guide
- Linux server administration basics
- VPS security hardening
- Nginx configuration guide
- PostgreSQL performance optimization
- LSCache guide
- Prometheus + Grafana monitoring
- Database backup strategies
- Multi-layer DDoS protection
- Let's Encrypt SSL setup
For hardware sizing, RAID/disk layout design, OS hardening, monitoring, and 24/7 management — talk to our infrastructure team contact us