Just to mark my specific problem, this happens to me when my RAM is full and my processor is loading.
The problem is a network socket timeout on IPC links between the RPC subprocess.
This is a poor design (unsafe and malfunctioning) that is commonly used for IPC instead of technology channels.
The fix is ββto clear some memory and processor usage and wait a minute before trying again.
And for developers, the fix is ββto stop using sockets for IPC and use the proper process channels.
Yes, this is the same socket timeout problem that you encountered in your browser, although in modern browsers the page just stops loading instead of displaying a timeout error screen.
(note that this implies a case of a good WAN connection with a local timeout)
source share