An admin walks out during an active incident, and suddenly you’re dealing with two emergencies at once. The person who knew the system inside and out is gone, and the outage they were fighting is still burning. For teams of two to fifteen engineers, this isn’t a thought experiment. It plays out when a lead responder quits mid-crisis, a contractor’s access lapses during a production failure, or the only engineer who understands a creaky legacy service simply stops answering the phone. The immediate problem isn’t just fixing whatever broke. It’s keeping access alive, transferring knowledge while the clock ticks, and making sure a single point of failure doesn’t snowball into a full-blown operational collapse. Here’s how to get through the moment and build enough redundancy to survive the next one.
Immediate Steps When the Primary Responder Is Gone
Stabilize the incident first. When the person with the most context disappears, the natural reaction is to scramble and try anything. That’s how small outages become long ones. Instead, work the problem in a deliberate order: secure access, reassess the situation, then act.
1. Get Back In Without Destroying Evidence
If the departed admin was the sole holder of a root credential, private key, or MFA device, you need to break in cleanly. For cloud infrastructure, lean on the provider’s emergency recovery paths. AWS Organizations lets the management account reset IAM credentials or assume roles in member accounts. Google Cloud has a similar super-admin recovery flow. On bare metal or colocated hardware, out-of-band management interfaces like iDRAC or iLO are your lifeline—assuming someone else knows those passwords. This is exactly why break-glass credentials belong in a physical safe or a separate, audited password manager that isn’t tied to one engineer’s identity. If you don’t have that setup, you’re learning the lesson the hard way right now. Whatever path you take, document it. You’ll need the trail for the post-incident review.
2. Pause and Re-Triage the Incident
The admin who left was probably mid-diagnosis. Their terminal sessions, Slack threads, and open tickets hold fragments of information that can mislead without full context. Hand the incident to a fresh commander—someone who wasn’t deep in the weeds—and have them reassess from scratch. Check monitoring dashboards, alert timelines, and recent change logs. If the departed admin was the only one who understood the alerting setup, you’ve got a second, quieter problem: your observability is now a black box. Say so openly in the incident channel. The new commander’s first job is to separate what the team actually knows from what the previous lead assumed.
3. Run a Mini Handoff from Whatever Artifacts You Have
Even without a live handoff, you can piece together intent. Grab the last hour of the admin’s command history, chat messages, and ticket updates. Look for recent config changes, deployments, or experiments. If they were running commands directly on a host, check .bash_history or the equivalent. In AWS, pull CloudTrail for API calls from their user or role. The goal is to answer three questions: what did they think was broken, what did they try, and what did they leave half-finished? This isn’t about blame. It’s about not duplicating work or accidentally reversing a fix that was almost done.
4. Tell the Team the Personnel Change
Stakeholders need to know the incident commander changed, not just that someone left. Update the incident channel, the status page, and any customer-facing comms with the new point of contact. If the departure was involuntary or messy, keep the message flat: “[Name] is no longer on the incident. [New name] is now leading the response.” Don’t speculate about why they left. The team’s attention needs to stay on the technical problem.
Preventing the Single-Admin Trap
The root cause here is rarely the departure itself. It’s the slow concentration of access and knowledge in one person. Lean teams are especially prone to this because they often depend on a single senior engineer for critical subsystems. The practices below shrink the blast radius of any one person’s absence.
Shared Runbooks with Rotation-Owned Sections
Runbooks should be living documents, not static PDFs. Each section—database failover, DNS cutover, queue drain—needs a named primary and secondary owner who review it quarterly. The review isn’t a checkbox exercise. It’s a chance for the secondary to actually run the procedure in a staging environment. If the primary leaves, the secondary’s name is already on the runbook, and they’ve practiced it recently. Store runbooks in a shared repository, not in someone’s personal notes folder.
Break-Glass Access That Actually Works
Plenty of teams have a “break-glass” procedure for emergency production access. It often fails the first time it’s tested. The password manager needs a master password only the departed admin knew. The hardware token is in their backpack. The SMS recovery code goes to their phone. Audit your break-glass process by simulating each team member’s sudden absence. Can someone else get production access within five minutes using only resources available in the office or a pre-shared emergency kit? If not, fix the process now. For a tested recovery checklist format, see our article on writing the recovery checklist before you write it.

Session Recording for High-Risk Operations
For database work, network changes, and infrastructure-as-code applies, record terminal sessions. Tools like script, asciinema, or commercial offerings capture exact commands and output. This isn’t surveillance; it’s a safety net. When an admin is interrupted mid-incident, the recording lets someone else replay the session, see what was attempted, and pick up where they left off. Store recordings in a shared, access-controlled bucket. Set a retention policy that’s long enough for incident reviews but short enough to respect privacy norms. Thirty days is a reasonable starting point.
When the Departure Is Permanent: Knowledge Transfer Under Duress
If the admin is leaving the company entirely—resignation, termination, or personal emergency—you need to extract critical knowledge while the incident is still active. This is delicate. The person might be cooperative, hostile, or simply unreachable. Plan for the worst case.
Prioritize Tacit Knowledge Over Documentation
Documentation is often stale. What you really need are the mental models: “When the primary database slows down, I check replication lag on the secondary, then look at the slow query log for table scans.” If you have any contact with the departing admin, ask scenario-based questions tied to the current incident. Record the conversation if legally permissible. If they’re unavailable, dig through their personal notes, dotfiles, and shell aliases. Engineers often encode their heuristics in shortcuts. A file called ~/check-db.sh might contain the exact diagnostic sequence you need.
Map Their Access and Revoke Methodically
During the incident, you may have used emergency access to assume the admin’s role. Once the incident is resolved, revoke that access systematically. Inventory every system they could reach: cloud providers, CI/CD pipelines, monitoring tools, third-party services, VPNs, and physical spaces. Use a checklist. Revoke credentials in order of blast radius—start with production infrastructure, then move to corporate tools. If the departure is involuntary, coordinate with HR and legal to stay compliant with employment laws while protecting systems. A common mistake is leaving API keys active because “they might need them for handoff.” Rotate keys immediately and issue new ones if the person is still cooperating.
Incident Review: The Dual Retrospective
After the technical incident is resolved, you have two postmortems to run: one for the original outage and one for the personnel departure. Combining them muddies the findings. The technical postmortem follows your standard blameless process—what triggered the incident, how it was detected, what mitigated it, what follow-up actions are needed. The personnel postmortem asks different questions: why did a single person’s departure threaten the response? What access, knowledge, or authority was concentrated? What hiring, onboarding, or offboarding processes failed?
Questions for the Personnel Postmortem
- Which systems had no secondary admin? Why?
- Were break-glass credentials available and tested? If not, what blocked them?
- Did the team have enough context to continue the incident response without the primary? If not, what runbooks or recordings were missing?
- Was the offboarding process triggered in a timely manner? Were there gaps in access revocation?

Building Resilience for the Next Time
Once the immediate crisis is over, invest in structural changes that make the next admin departure a non-event. These aren’t one-off fixes; they’re habits that compound.
Pairing on Production Changes
For a team of five, pairing on every change is unrealistic. But pairing on changes to the top three critical systems—the primary database, the authentication service, the payment pipeline—is achievable. When two people understand a change, you’ve halved the risk of a single point of knowledge failure. Record these pairing sessions. The recording becomes a living runbook that shows not just what was done, but how it was diagnosed and fixed in real time.
Rotating On-Call Across Subsystems
If your on-call rotation assigns the same person to the same subsystem every week, you’re building fragility. Rotate engineers through different subsystems, even if it means slower initial response. The goal is for every engineer to have at least a working familiarity with every production system. This is hard on a team of three, but even partial rotation—swapping primaries every month—builds redundancy. Pair rotation with “game days” where you simulate failures and practice handoffs.
Documenting the Undocumented
Every team has tribal knowledge: the weird workaround for a legacy queue, the specific kernel parameter that prevents a crash, the cron job nobody remembers creating. Hunt this down. Run a recurring “knowledge audit” where each engineer lists the top five things they know that aren’t written down. Turn those into runbooks, then test them with someone who didn’t write them. This is tedious but essential. When an engineer leaves, the team should lose their creativity and judgment, not the basic operational knowledge needed to keep systems running.
FAQ
What’s the first thing to do if the only admin with production access quits during an outage?
Use your out-of-band emergency access procedure. For cloud environments, this typically means the organization’s root account or a break-glass role that bypasses normal IAM policies. If you don’t have one, contact your cloud provider’s support immediately—they can assist with account recovery, though it may take hours. While waiting, focus on mitigating customer impact through any available means, such as DNS changes or static failover pages, even if you can’t touch the affected infrastructure directly.
How do we prevent a single engineer from holding all the access keys?
Implement a dual-control access policy for production systems. No single person should hold the only copy of a root credential, encryption key, or multi-factor authentication device. Use a shared password manager with emergency access features, such as a physical safe with a sealed envelope that requires two people to open, or a digital vault with a time-delayed break-glass function. Audit access monthly. The goal is to ensure that at least two people can gain emergency access independently, without the other’s cooperation.
What if the departing admin was the only one who understood a legacy system?
This is a knowledge transfer emergency. If the person is still reachable, conduct a structured exit interview focused exclusively on operational procedures: startup/shutdown sequences, common failure modes, monitoring blind spots, and any undocumented dependencies. Record the session. If they’re unreachable, treat the system as a black box: map its inputs and outputs, review historical incident data, and consider engaging a specialist contractor for a one-time knowledge extraction. In parallel, prioritize replacing or containerizing the legacy system to eliminate the single point of knowledge.

Making This Part of Your Operational DNA
Admin departure during an incident is a stress test of your team’s operational maturity. The goal isn’t to prevent departures—people will always leave—but to ensure that no single departure can escalate an incident into a crisis. This requires treating access controls, runbooks, and cross-training not as compliance checkboxes but as core reliability work. When you prioritize these practices, you’re not just preparing for the worst day; you’re building a team that can handle any day with confidence.
For a concrete starting point, revisit your incident recovery procedures and make sure they’re written for the person who doesn’t have the primary’s mental model. Our guide on writing a recovery checklist before you need it walks through a practical, testable format that works even when the original author isn’t in the room.