I'm trying to interact with supervisord
, and I'd like to talk with it over a unix socket (it's a shared hosting environment).
What I've tried so far is:
import xmlrpclib
server = xmlrpclib.ServerProxy('unix:///path/to/supervisor.sock/RPC2')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/xmlrpclib.py", line 1549, in __init__
raise IOError, "unsupported XML-RPC protocol"
IOError: unsupported XML-RPC protocol
/path/to/supervisor.sock
definitely exists. URIs of the form 'unix:///path/to/supervisor.sock/RPC2' are used by supervisord
, which is where I got the idea. The docs don't discuss unix sockets: http://docs.python.org/library/xmlrpclib.html.
Is this possible? Should I use a different library?
xmlrpclib
requires that the url passed start withhttp
orhttps
. The way around this is to define a custom transport which ignores that url. Here's some code using the transport from supervisor:In case that's not useful, here's an updated version of the code found here: