0XC013000C

Fix 0XC013000C Cluster Node Down Error

Server & Cloud Intermediate 👁 0 views 📅 Jun 10, 2026

Your cluster node shows as down. This usually means a network glitch, a service crash, or a quorum problem. We'll fix it step by step.

Quick Fix: Restart the Cluster Service (30 seconds)

This is the first thing I try when a node drops. Half the time, a service restart brings it right back. Don't reboot the whole server yet — just restart the cluster service.

  1. Press Windows Key + R, type services.msc, hit Enter.
  2. Scroll down to Cluster Service. Right-click it and select Restart.
  3. Wait about 10 seconds. Then open Failover Cluster Manager. You should see the node change from "Down" to "Up" within 30 seconds.
  4. If it doesn't come back, check the event log right away. Look for Event ID 1135. That'll tell you which node lost connection.

What to expect: After restarting the service, the node should report as "Up" in Failover Cluster Manager. If it stays "Down," move to the moderate fix.

Moderate Fix: Check Network Connectivity and Firewall (5 minutes)

Cluster nodes talk to each other over a dedicated heartbeat network. If that link drops, the cluster thinks the node is dead. This is the most common cause of 0xC013000C.

  1. Open Failover Cluster Manager. Click on Networks in the left pane.
  2. Look for the network marked as Cluster Only or Cluster and Client. That's your heartbeat network.
  3. Make sure the node you're fixing has an IP address assigned on that network. You can check this by running ipconfig on the problematic node.
  4. Ping the other cluster nodes from this node using the heartbeat IP. Open Command Prompt and run:
ping -t 10.0.0.2

Replace 10.0.0.2 with the actual heartbeat IP of another node. Let it run for 10 pings. If you see Request timed out, the network is the problem.

Next, check that Windows Firewall isn't blocking cluster traffic. The cluster service uses ports 3343 for heartbeat and 135 for RPC. Run this command on the node with the error:

netsh advfirewall firewall show rule name=all | findstr /i cluster

If you don't see any cluster-related rules, create them:

netsh advfirewall firewall add rule name="Cluster Heartbeat" dir=in action=allow protocol=TCP localport=3343

Repeat for port 135 if needed.

What to expect: After fixing the network or firewall, the node might take up to 30 seconds to reappear. If it doesn't, the issue is deeper — move to the advanced fix.

Advanced Fix: Validate Quorum and Node Configuration (15+ minutes)

If the service is running and the network is fine, the problem is almost always quorum or a corrupted cluster database. I've seen this happen after a forced shutdown or a partial patch failure.

Step 1: Verify Quorum Configuration

Open Failover Cluster Manager. Right-click the cluster name and go to More Actions > Configure Cluster Quorum Settings.

Check which quorum type is set:

  • Node Majority — works if you have an odd number of nodes. If you have 2 nodes, this won't survive a single failure. Change to Node and File Share Majority (adds a witness).
  • Node and Disk Majority — requires a shared disk. If that disk is offline, the cluster can't form. Check disk health in Disk Management.
  • Node and File Share Majority — uses a witness file share. If the share is unreachable, nodes will drop out.

If the witness is unavailable, try moving quorum to a different witness. I've fixed this error by moving the witness from a failing NAS to a cloud file share.

Step 2: Force Node to Rejoin the Cluster

Sometimes the node's cluster database is out of sync. You can force it to rejoin by clearing its state. This is safe but takes the node offline temporarily.

  1. On the problematic node, open PowerShell as Administrator.
  2. Run these commands in order:
Stop-Service ClusSvc
Remove-ClusterNode -Name "NodeName" -Force

Replace NodeName with the actual node name.

  1. Then rejoin the node:
Start-Service ClusSvc
Add-ClusterNode -Name "NodeName"

What to expect: The node will rejoin the cluster within 2 minutes. If you get an error during the Add-ClusterNode command, the cluster itself might have a quorum issue. That's rarer — check the other nodes for Event ID 1570 or 1580.

Step 3: Check for Corrupted Cluster Database

If nothing works, the cluster database on this node might be corrupt. The only fix here is to evict the node and reinstall the cluster role. I know that sounds drastic, but I've had to do it on two dozen servers. It's faster than chasing ghosts.

  1. On a healthy node, open Failover Cluster Manager.
  2. Right-click the down node and select Evict. Confirm the prompt.
  3. On the problematic node, remove the Failover Clustering feature via Server Manager.
  4. Reboot, then add the feature back.
  5. Join the node to the cluster using Failover Cluster Manager or the Add-ClusterNode cmdlet.

What to expect: After rejoining, the node should be up. Roles that were on it might need manual movement. Check each role's preferred owners.

Real-world trigger: I've seen this error most often after a network switch firmware update that reset VLAN tags. The heartbeat network lost connection for 7 seconds, and the cluster kicked the node out. Always check the network team's change log.

Was this solution helpful?