15
Socket error 10024 – Too many open files
No process may have more than a system-defined number of file descriptors open at a time. No more file handles are available, so no more files can be opened. Generically, the error means the network system has run out of socket handles.

Hot fix this error
There may be too many Winsock applications running simultaneously, but this is unlikely since most network systems have many socket handles available. This error also could occur if an application opens and closes sockets often, but doesn’t properly close the sockets (so it leaves them open, as “orphans”). To recover the orphaned sockets, you can try closing the application and restarting it to recover the open sockets; you may have to end all Winsock applications (to force an unload of the Winsock DLL). The source


[...] Socket error 10024 – Too many open files No process may have more than a system-defined [+] [...]