0X00001396

Fix ERROR_GROUP_NOT_ONLINE (0X00001396) in Windows Clusters

Server & Cloud Intermediate 👁 0 views 📅 May 27, 2026

This error means a cluster group is stuck offline. I'll walk you through the three most common causes and their fixes, starting with the one I see most often.

Cause #1: The group's resources have failed or are offline

I know this error is infuriating, especially when you've got a production cluster down. But 80% of the time, the fix is simpler than you think. The group itself is a container for resources (like disks, IP addresses, or services). If any critical resource inside that group fails, the whole group stays offline.

Real-world trigger: This happens often after a node reboot. The disk resource might fail to mount, or the IP address might conflict with another device on the same subnet. I've seen it on Windows Server 2012 R2 clusters where a shared disk was accidentally disconnected during maintenance.

Quick fix

  1. Open Failover Cluster Manager.
  2. Navigate to Roles and select your stuck group (usually named something like "File Server" or "SQL Server").
  3. Expand the group and look at each resource's Status column. Any that say Failed or Offline are your culprits.
  4. Right-click the failed resource and choose Bring Online. If it fails, right-click again and select Take Offline, then Bring Online again.

Pro tip from my blog days: Don't just spam the "Bring Online" button. Check the Event Viewer under Applications and Services Logs > Microsoft > Windows > FailoverClustering > Operational for the actual failure reason. It's usually a disk timeout or a dependency issue.

Cause #2: Incorrect preferred owners settings

If the group's resources are all online but the group still won't start, check the Preferred Owners list. This setting tells the cluster which nodes are allowed to run the group. If no node is listed, or if all listed nodes are offline, the group sits there like a stubborn mule.

I tripped on this one myself when I migrated a cluster from Windows Server 2016 to Windows Server 2019. The new node wasn't added to the preferred owners list, so the group refused to come online even though everything else looked fine.

How to fix

  1. In Failover Cluster Manager, right-click the problematic group and choose Properties.
  2. Go to the General tab (or Failover tab on older versions).
  3. Under Preferred owners, make sure at least one currently online node is checked.
  4. If the list is empty, click Add... and select the nodes you want. I always add all available nodes to avoid this headache.
  5. Click OK and then right-click the group and choose Bring Online.

Opinion: Skip the "Possible owners" tab — that's for individual resources and rarely causes this error. Focus on the group-level preferred owners.

Cause #3: Corrupted cluster database or quorum issues

This one's rare but nasty. The cluster group won't come online because the cluster database (stored in the quorum) is damaged or the quorum itself is lost. You'll usually see other errors in Event Viewer like Cluster service failed to bring group online with error 'The cluster network is not available' or Quorum lost.

Real-world trigger: I helped a client once where a power surge killed both nodes in a two-node cluster. The disk witness was also corrupted. Every group showed ERROR_GROUP_NOT_ONLINE because the cluster couldn't agree on which node owned the quorum.

Diagnose first

Run this PowerShell command on any node:

Get-ClusterQuorum

If it returns Quorum not configured or the witness is unavailable, you've found the root cause.

Fix it

  1. If the quorum is lost, force quorum on a node using this command:
Start-ClusterNode -Name NodeName -ForceQuorum
  1. Once the node is up, check if the group comes online. If not, run:
Get-ClusterGroup | Where-Object {$_.State -eq 'Offline'} | Start-ClusterGroup
  1. If the cluster database is corrupted, you might need to restore from a backup. In Failover Cluster Manager, go to Actions > Restore Cluster Configuration. This requires a recent backup from Windows Server Backup or your backup tool.

Warning: Rebuilding the cluster from scratch is a last resort. It's faster to fix the quorum first.

Quick-reference summary

Cause Symptoms Fix
Failed or offline resources One or more resources show Failed/Offline; group stuck offline Bring each failed resource online individually; check Event Viewer for root cause
Incorrect preferred owners All resources online; group still offline; no preferred owners set Add currently online node(s) to the group's preferred owners list
Corrupted database / quorum loss Quorum not configured; multiple groups offline; cluster service errors Force quorum on a node; restore cluster configuration from backup

And that's it — three causes, three fixes. Start with the resources, then check preferred owners, and only dig into quorum stuff if the first two don't work. You've got this.

Was this solution helpful?