Event 5719 indicates that the computer could not set up a secure session with a domain controller, while 5783 signifies that the session to the DC is down. This explains why authentication fails even though the DC is reachable via basic port checks; the pipe used for NTLM authentication is saturated or unresponsive due to the high load generated by your SQL or backup processes.
To investigate the MaxConcurrentApi bottleneck, you must use Performance Monitor (perfmon.exe) to look at the Netlogon object. Open Performance Monitor, click the green plus sign to add counters, and locate the Netlogon section in the list. Within this section, select the Semaphore Waiters counter and add it to the view. This counter represents the number of threads waiting to obtain a slot in the Netlogon queue to perform NTLM authentication. If this value is consistently greater than zero during the issue, it confirms that your server is unable to process authentication requests fast enough, causing the 15-minute delays you observed during RDP attempts.
If the Semaphore Waiters counter validates this bottleneck, you should increase the MaxConcurrentApi registry value. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters and create a new DWORD named MaxConcurrentApi if it does not already exist. For a Windows Server handling heavy SQL or application traffic, setting this value to 10 (decimal) is a common starting point, though it can be increased up to 150 if necessary. This change requires a restart of the Netlogon service to take effect. This adjustment allows the server to handle more simultaneous authentication threads, preventing the queue buildup that leads to the 5719 and 5783 errors.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
VP