Career Employer

FREE CompTIA Server+ Study Guide 2026: SK0-005

The most important things the CompTIA Server+ (SK0-005) tests — an interactive study guide with built-in quizzes and flashcards, organized by all 4 official domains.

Check sections to boost your score

Don't know where to start?

To find us again, just search “Career Employer Server+

By

This free CompTIA Server+ study guide walks through every content domain the Server+ (SK0-005) exam tests, organized to the current CompTIA exam objectives.[1]

It’s interactive, not a wall of text: every module has built-in checkpoint quizzes, flashcards, and practice questions, so you learn by doing — not just reading.

The Server+ tests four official domains, and we teach them as four study modules, leading with the heaviest-weighted content (Server Administration and Troubleshooting together are well over half the exam). Read a module, test yourself at each checkpoint, then drill gaps with our free practice test and flashcards. This guide is a high-yield overview that maps the official content — not a full server-administration textbook.

CompTIA Server+ is one of the 14 CompTIA certifications — explore our CompTIA study guides to compare and prep across the whole family.

Server+ Exam Snapshot

CompTIA Server+ (SK0-005) at a glance
DetailServer+ Exam
Exam codeSK0-005 (current; no SK0-006 exists)
QuestionsMaximum of 90 (multiple choice + performance-based)
Time90 minutes
Passing score750 on a 100–900 scale (scaled score, not a percentage)
Certifying bodyCompTIA
CostAbout $358–$390 (single voucher; varies by region/promo)
PrerequisitesNone required (CompTIA A+ and ~2 years' experience recommended)
Validity3 years (Continuing Education program, since Oct 1, 2025)
RenewalEarn CEUs over 3 years, or pass a higher CompTIA cert

The Server+ covers four domains. Two of them — Server Administration and Troubleshooting — together make up well over half the exam (58%), so that is where to invest first.[1] Study by weight:

Server+ SK0-005 weighting by domain (CompTIA exam objectives)
2.0 Server Administration30% · Roles, virtualization, HA
4.0 Troubleshooting28% · Methodology + tools
3.0 Security & Disaster Recovery24% · Backups, DR sites
1.0 Server Hardware Installation & Management18% · Form factors, RAID

Module 1 · Server Hardware Installation & Management

One official domain, 18% of the exam. This is the physical foundation — the chassis, the disks, and the power and cooling that keep a server alive. RAID alone earns a large share of the questions here and in the troubleshooting domain, so master it cold.

1.1 Form Factors, Racking & Components

A server’s is its physical shape. A tower stands alone like a desktop; a rack-mount server bolts into a standard 19-inch rack and is measured in rack units (a is 1.75 inches); and a slides into a shared enclosure that supplies common power, cooling, and networking.[1]

Inside, servers differ from desktops in their emphasis on reliability and redundancy: multiple CPU sockets for multiprocessing, that corrects single-bit errors, redundant power supplies and fans, host bus adapters (HBAs) for storage, and a for out-of-band management. Good racking practice — rail kits, cable management, and a hot-aisle/cold-aisle layout — keeps airflow and serviceability sane.

Server form factors compared
Form factorDescriptionBest for
TowerStandalone upright chassis like a desktopSmall office, branch, first server
Rack-mount (1U–4U)Bolts into a 19-inch rack; sized in rack unitsData centers, server rooms
BladeThin module in a shared enclosure (power/cooling/network)High-density, scalable compute

1.2 RAID Levels

combines multiple disks for speed, redundancy, or both — and it is the single most-tested topic on the exam. You must know each level’s minimum drives, fault tolerance, and usable capacity by heart.[1]

stripes for pure speed with no protection; mirrors two drives; stripes with single parity (survives one failure); adds double parity (survives two); and mirrors then stripes for both speed and resilience. A can rebuild an array automatically when a member fails.

RAID levels — the numbers to memorize
RAIDMethodMin drivesSurvivesUsable capacity
0Striping2Nothing100% (n drives)
1Mirroring21 drive50% (n / 2)
5Stripe + single parity31 drive(n − 1) drives
6Stripe + double parity42 drives(n − 2) drives
10Mirror + stripe (1+0)41 per mirror pair50% (n / 2)

1.3 Storage, Power & Cooling

Beyond local RAID, servers reach storage three ways. attaches disks directly to one server; shares files over the LAN (SMB/CIFS, NFS); and a presents block storage over a dedicated high-speed network, often using over Ethernet or Fibre Channel.[6]

Power and cooling keep it all running. Use redundant, hot-swappable power supplies on separate circuits, a for graceful shutdown during outages, and managed PDUs for remote control. Watch drive interfaces too: SAS (fast, enterprise), SATA (capacity), and NVMe (lowest-latency SSD over PCIe).

Server storage architectures
TypeAccess levelTransportUse
DASBlockInternal disks / external SASSingle-server, simple, fast
NASFileLAN (SMB/CIFS, NFS)Shared files for many clients
SANBlockFibre Channel / iSCSIHigh-performance shared block storage

Checkpoint · Server Hardware Installation & Management

Question 1 of 10

Which type of RAID configuration is characterized by striping with distributed parity?

Module 2 · Server Administration

One official domain, 30% of the exam — the single heaviest. This is where you operate the server day to day: install and configure the OS and its roles, run virtual machines, and design for availability. Expect performance-based questions here.

2.1 Server Roles & the OS

A is the primary job a server does — file, print, web, database, DNS, DHCP, or directory services. After installing the OS (Windows Server or a Linux distribution), you configure roles to requirements, harden the build, and join it to like Active Directory for centralized authentication.[8]

Manage servers remotely with SSH (Linux, TCP 22) or RDP (Windows, TCP 3389), keep clocks synced with NTP, and automate repetitive work with shell, PowerShell, or Bash scripting so configuration is consistent at scale.

Common server roles
RoleWhat it provides
File / printShared storage and print services for clients
WebHosts websites and web applications (HTTP/HTTPS)
DatabaseStores and serves structured data (SQL/NoSQL)
DNSResolves hostnames to IP addresses
DHCPAutomatically assigns IP, mask, gateway, and DNS
Directory (AD/LDAP)Centralized identity, authentication, and policy

2.2 Virtualization & Containers

Virtualization is a major theme of this domain. A abstracts physical hardware so many run on one host. A Type 1 (bare-metal) hypervisor runs directly on hardware for production; a Type 2 (hosted) hypervisor runs as an app on an OS for labs.[5]

A is lighter than a VM — it packages an app and its dependencies but shares the host kernel, so it starts in seconds. Use to roll back a VM after a change (but never as a real backup), and to allocate disk on demand.

Virtual machine vs. container
AspectVirtual machineContainer
IsolationFull guest OS on a hypervisorShares the host OS kernel
Size / startupLarger; boots in minutesTiny; starts in seconds
Best forStrong isolation, different OSesLightweight, scalable microservices

2.3 High Availability & Clustering

means designing so a single failure doesn’t take a service down. links multiple nodes so they act as one system: a failover cluster shifts a failed node’s workload to a survivor, while load balancing spreads requests for performance. keeps a current copy of data on another node or site.

High-availability building blocks
TechniqueWhat it does
Failover clusterAnother node takes over a failed node's workload
Load balancingDistributes requests across nodes for performance
Replication (sync/async)Keeps a current data copy on another node/site
NIC teamingBonds NICs for bandwidth and link redundancy
Redundant powerDual PSUs on separate circuits + UPS

2.4 Maintenance & Documentation

Sustained operations rest on discipline. Run on a schedule (test, then deploy OS and firmware updates), establish a performance so you can spot drift, and keep thorough documentation — diagrams, asset and license inventories, and change records. A formal change process reduces the human error behind most outages.

Checkpoint · Server Administration

Question 1 of 10

Which technology is primarily used in servers to enable virtualization?

Module 3 · Security & Disaster Recovery

One official domain, 24% of the exam. This domain pairs keeping a server secure with being able to recover it after a disaster — two sides of protecting the business’s data and uptime.

3.1 Security & Hardening

shrinks the attack surface: remove unused roles and services, close unnecessary ports, patch promptly, and enforce and . Protect data with encryption at rest and in transit, and anchor key protection in an or a . Secure the physical layer too — locked racks, access control, and proper data destruction when media retires.[4]

Server hardening essentials
ControlWhy it matters
Remove unused roles/servicesFewer running services = smaller attack surface
Patch OS and firmwareCloses known vulnerabilities before exploitation
Least privilege + RBACLimits damage from a compromised account
MFAStops most credential-theft attacks
Encryption (rest + transit)Protects data if media or traffic is captured
Secure data destructionPrevents recovery of retired media (NIST SP 800-88)

3.2 Backups

Backups are the core of recoverability. A copies everything; an copies only what changed since the last backup of any type (small, but a restore needs the full plus every increment); a copies what changed since the last full (larger, but restores from just the full plus the latest differential).[3] Follow the and keep an air-gapped copy against ransomware — and always test restores.

3.3 Disaster Recovery

Disaster recovery planning starts with two numbers: (how fast you must recover) and (how much data loss is acceptable). They size everything else — backup frequency and the alternate-site tier.[3]

Alternate sites trade cost for speed: a can take over almost instantly, a needs data restored and services started, and a is just space and power. switches to the redundant system, and returns to the primary once it’s repaired. Track reliability with and repair speed with .

DR concepts and metrics
TermMeaning
RTOMaximum acceptable time to restore service (drives site tier)
RPOMaximum acceptable data loss (drives backup frequency)
Hot / warm / cold siteAlternate sites from instant takeover to space-only
Failover / failbackSwitch to redundant system; return to primary when fixed
MTTR / MTBFMean time to repair / mean time between failures

Checkpoint · Security & Disaster Recovery

Question 1 of 10

What is the primary purpose of a Hardware Security Module (HSM) in a server environment?

Module 4 · Troubleshooting

One official domain, 28% of the exam. Server+ rewards a disciplined process and knowing which symptom points to which fault — across hardware, storage, the OS, the network, and security. Expect performance-based questions here.

4.1 The Troubleshooting Methodology

CompTIA tests an exact, ordered . Knowing the order — and that you verify and document last, and never implement a fix before testing your theory — is one of the most reliable sets of points on the exam.[1]

4.2 Hardware & Storage Issues

Hardware faults often show at boot. A failed signals a problem — read beep/POST codes, reseat RAM and cards, and check power.

Storage problems include a (a RAID set running on a failed member — replace and rebuild fast), warnings predicting a disk failure, and capacity exhaustion. Overheating from failed fans or blocked airflow can throttle or shut down a server.

Common hardware/storage symptoms and causes
SymptomLikely causeFirst action
No POST / beep codesBad RAM, card, or powerRead codes; reseat RAM and cards
Array degradedA RAID member failedReplace the drive; let it rebuild
SMART warningsA disk is failingBack up, then replace the drive
Thermal shutdownFailed fan or blocked airflowCheck cooling, dust, and fans
Disk fullLogs/data filled the volumeFind large files; expand or archive

4.3 OS, Network & Performance

Above the hardware, the usual suspects are services, the network, and performance. A crash (Windows BSOD or Linux kernel panic) and event logs point to drivers, corruption, or hardware.

Network problems trace through cabling, NIC config, IP settings, and DNS — if you can ping by IP but not by name, suspect DNS. Performance issues come down to one bottleneck: CPU, memory, disk I/O, or network, found by comparing usage to the .

Checkpoint · Troubleshooting

Question 1 of 10

What is the first step in troubleshooting a server that fails to boot with no error messages or beeps?

How to Use This Server+ Study Guide

This guide is built to be worked, not just read. The most efficient path to a pass:

  • Study by weight. Server Administration (30%) and Troubleshooting (28%) are well over half the exam — start there, then Security & Disaster Recovery (24%) and Hardware (18%).
  • Master RAID and DR first. RAID levels and the disaster-recovery concepts (backup types, RTO/RPO, hot/warm/cold sites) appear throughout the exam — know them cold.
  • Check off as you go. Use the Study Guide Contents to mark each section done; it raises your exam-readiness score.
  • Take every checkpoint. The end-of-module quizzes show exactly which domains need another pass.
  • Drill the weak domain. Send your weak area into the flashcards and a practice test until the score climbs.
  • Practice the PBQs. Performance-based questions reward hands-on skill — walk through RAID math, a backup restore order, and the troubleshooting steps until they’re automatic.

Server+ Concept Questions

Common Server+ concepts candidates search while studying — each answered briefly and backed by an official source. Test yourself, then drill them as flashcards.

Server+ Glossary

The high-yield Server+ terms in one place — hover any dotted term in the guide, or flip the whole deck here as a self-grading flashcard set.

3-2-1 rule
Keep 3 copies of data, on 2 different media types, with 1 copy offsite, to survive most failure and disaster scenarios.
Baseline
A documented record of normal performance (CPU, memory, disk, network) used to detect abnormal behavior later.
Blade server
A stripped-down server module that slides into a shared enclosure providing common power, cooling, and networking to many blades.
BMC / IPMI
Baseboard Management Controller using IPMI — out-of-band management for remote power, console, and sensor monitoring, independent of the OS.
Clustering
Linking multiple servers (nodes) to act as one system for availability or load balancing; a failed node's load shifts to others.
Cold site
A basic facility (space, power, cooling) with no ready equipment; cheapest but slowest to bring online.
Container
A lightweight, isolated package of an application and its dependencies that shares the host OS kernel; smaller and faster than a VM.
DAS
Direct-Attached Storage — disks connected directly to one server (internal or external SAS); simple and fast but not easily shared.
Degraded array
A fault-tolerant RAID set running with a failed member: still operational but unprotected until the drive is replaced and rebuilt.
Differential backup
Backs up data changed since the last full backup; larger than incremental, but restores from just the full plus the latest differential.
Directory services
A centralized identity store (e.g., Active Directory, LDAP) for authentication, authorization, and resource management.
ECC memory
Error-Correcting Code RAM that detects and corrects single-bit memory errors; standard in servers for data integrity.
Failback
Returning operations to the primary system or site once it is repaired and verified after a failover.
Failover
Automatically switching to a redundant system or site when the primary fails, to maintain availability.
Form factor
The physical size and shape of a server — tower, rack-mount (sized in rack units), or blade — chosen for density, scalability, and environment.
Full backup
A complete copy of all selected data; slowest and largest to create, but the fastest and simplest to restore.
Hardening
Reducing a server's attack surface by removing unused services/roles, closing ports, patching, and applying secure baselines.
High availability (HA)
Designing systems with redundancy and failover so services keep running despite component failures.
Hot site
A fully equipped, continuously updated alternate site that can take over almost immediately — fastest recovery, highest cost.
Hot spare
A standby drive that automatically rebuilds a RAID array when a member fails, minimizing the unprotected window.
Hot-swappable
A component (drive, power supply, fan) that can be replaced while the server is powered on, with no downtime.
HSM
Hardware Security Module — a tamper-resistant device that securely generates, stores, and uses cryptographic keys, and accelerates crypto.
Hypervisor
Software that creates and runs virtual machines by abstracting physical hardware; Type 1 runs on bare metal, Type 2 on a host OS.
Incremental backup
Backs up only data changed since the last backup of any type; small and fast, but a restore needs the full plus every increment in order.
iSCSI
Internet Small Computer System Interface — SCSI block commands carried over TCP/IP, letting a SAN run on standard Ethernet.
Least privilege
Granting users and services only the minimum access needed, limiting damage from compromise or error.
MFA
Multifactor authentication — requiring two or more factors (know, have, are) to authenticate, strongly reducing credential theft risk.
MTBF
Mean Time Between Failures — the average operating time between failures; a measure of reliability.
MTTR
Mean Time To Repair — the average time to fix a failed component and restore service.
NAS
Network-Attached Storage — file-level storage shared over the LAN using SMB/CIFS or NFS.
Patch management
The scheduled process of testing and applying OS and firmware updates to fix bugs and close security holes.
POST
Power-On Self-Test — firmware diagnostics at boot; beep or POST codes indicate hardware faults like bad RAM or no video.
Rack unit (U)
A unit of vertical rack space equal to 1.75 inches (44.45 mm); a 2U server occupies two slots in a standard 19-inch rack.
RAID
Redundant Array of Independent Disks — combining multiple drives for performance, redundancy, or both.
RAID 0
Disk striping with no parity: data is split across drives for speed and full capacity, but any single drive failure loses all data.
RAID 1
Disk mirroring: identical copies on two drives; survives one failure, with usable capacity equal to half the raw total.
RAID 10
A stripe of mirrors (1+0): combines RAID 1 redundancy with RAID 0 speed; needs 4+ drives.
RAID 5
Striping with single distributed parity across 3+ drives; survives one drive failure with usable capacity of (n − 1) drives.
RAID 6
Striping with double distributed parity across 4+ drives; survives two simultaneous failures with usable capacity of (n − 2) drives.
Replication
Copying data to another system or site in real time or near-real time so a current copy is always available.
RPO
Recovery Point Objective — the maximum acceptable amount of data loss, measured as time back to the last good backup.
RTO
Recovery Time Objective — the maximum acceptable time to restore a service after an outage.
SAN
Storage Area Network — block-level storage over a dedicated high-speed network (Fibre Channel or iSCSI).
Server role
A primary function a server provides — file, print, web, database, DNS, DHCP, or directory services.
SMART
Self-Monitoring, Analysis and Reporting Technology — drive self-diagnostics that help predict disk failures before they happen.
Snapshot
A point-in-time capture of a VM's state for quick rollback after a change; not a substitute for a real backup.
Thin provisioning
Allocating storage on demand as data is written, so a volume can be presented larger than the space currently consumed.
TPM
Trusted Platform Module — a chip that stores keys and integrity measurements to support secure boot and full-disk encryption.
Troubleshooting methodology
CompTIA's 7 steps: identify the problem; theorize a cause; test it; plan; implement or escalate; verify; document.
UPS
Uninterruptible Power Supply — battery backup that bridges a power loss and enables a graceful shutdown.
Virtual machine (VM)
A software-based computer with its own virtual CPU, memory, disk, and NIC, running on a hypervisor.
Warm site
A partially equipped alternate site with hardware and connectivity ready, needing data restore and setup before takeover.

Server+ Study Guide FAQ

The Server+ SK0-005 exam has a maximum of 90 questions and you get 90 minutes. The questions are a mix of multiple choice (single and multiple response) and performance-based questions (PBQs) that require hands-on, scenario-style tasks.

References

  1. 1.CompTIA. “Server+ (SK0-005) Certification Exam Objectives.” comptia.org.
  2. 2.CompTIA. “CompTIA Continuing Education (renewal & CEUs).” comptia.org.
  3. 3.National Institute of Standards and Technology. “SP 800-34 Rev. 1 — Contingency Planning Guide for Federal Information Systems.” csrc.nist.gov.
  4. 4.National Institute of Standards and Technology. “SP 800-88 Rev. 1 — Guidelines for Media Sanitization.” csrc.nist.gov.
  5. 5.National Institute of Standards and Technology. “SP 800-125 — Guide to Security for Full Virtualization Technologies.” csrc.nist.gov.
  6. 6.National Institute of Standards and Technology. “SP 800-209 — Security Guidelines for Storage Infrastructure.” csrc.nist.gov.
  7. 7.National Institute of Standards and Technology. “SP 800-111 — Guide to Storage Encryption Technologies for End User Devices.” csrc.nist.gov.
  8. 8.Internet Engineering Task Force. “RFC 2131 — Dynamic Host Configuration Protocol.” rfc-editor.org.
Career Employer

Career Employer is the ultimate resource to help you get started working the job of your dreams. We cover topics from general career information, career searching, exam preparation with free study materials, career interviewing, and becoming successful in your career of choice.

Follow Us:

All Posts

Career Employer’s Editorial Process

Here at Career Employer, we focus a lot on providing factually accurate information that is always up to date. We strive to provide correct information using strict editorial processes, article editing, and fact-checking for all of the information found on our website. We only utilize trustworthy and relevant resources. To find out more, make sure to read our full editorial process page here.