I have a Python process on a single box which creates a flock of mini servers, small Python processes which provide some specialized computation. Each of those creates and listens on a Unix domain socket using multiprocessing.connection.Listener ("file_path"), each with a different path, of course.
Is it possible to access a socket on a remote machine, with something like a path of unix://remote/file_path, or file://remote/file_path?
Using port numbers is not practical, since the set of mini servers is dynamic.