Your ESXi host triggers intermittent or continuous "Commands Aborted" alarms in vCenter.
Your Virtual Machines may experience brief stuns, high latency, or storage unresponsiveness.
You will notice frequent structural storage state changes in your /var/run/log/vobd.log file, such as path redundancy degradation or Permanent Device Loss (PDL):
[esx.problem.storage.redundancy.degraded] Path redundancy to storage device naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
You will also find your /var/run/log/vmkernel.log file flooded with Native Multipathing (NMP) failover attempts, explicitly logging SCSI sense data 0x5 0x25 0x0 (ILLEGAL REQUEST: LOGICAL UNIT NOT SUPPORTED):WARNING: NMP: nmpCompleteRetryForPath:356: Retry cmd 0x1a (0x45ba4ae1b680) to dev "naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" failed on path "vmhbaX:CX:TX:LX" H:0x0 D:0x2 P:0x0 Valid sense data: 0x5 0x25 0x0.WARNING: NMP: nmpCompleteRetryForPath:391: Logical device "naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": awaiting fast path state update before retrying failed command again...
VMware vSphere ESXi 8.x
You will encounter this issue when a physical LUN—frequently utilized as a Raw Device Mapping (RDM) attached to your Virtual Machine—is deleted, unmapped, or masked on your backend storage array before you cleanly detach it from your ESXi host and Virtual Machine.
Because your ESXi host was never instructed to stop routing I/O to the device, it continues to send commands down your existing storage paths. The storage array actively rejects these commands with an ILLEGAL REQUEST (0x5 0x25 0x0), indicating it no longer recognizes the LUN. This forces your ESXi host's multipathing daemon into a frantic, endless retry loop across all alternate paths, which exhausts your host's storage queue and triggers your "Commands Aborted" alarms.
To resolve this issue, you must completely unmap the orphaned devices from your Virtual Machine(s) and administratively detach them from your ESXi host to flush the dead paths from your routing table.
Note: ESXi will prevent you from detaching a storage device if your VM is still actively configured to use it.
Locate your affected Virtual Machine(s) in the vSphere Client.
Right-click the VM and select Edit Settings.
Locate the Hard Disk that maps to the affected naa. ID.
Click the X icon to remove the Hard Disk.
Check the box to Delete files from datastore. (Note: For RDMs, this safely deletes the .vmdk pointer file on your VMFS volume; it does not delete your physical data).
Click OK.
esxcli commands:Mark the device as administratively detached:
esxcli storage core device set --state=off -d naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
esxcli storage core device list -d naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | grep "Status:"
esxcli storage core device detached remove -d naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Rescan the storage adapters :
esxcli storage core adapter rescan --all
Once your rescan completes, your host will cease all I/O retries to the unmapped device, and your storage queue will stabilize.