I open a serve in one of my laptop(head) using:
ray.init()
serve.start(http_options={'host':ip1, 'location':'EveryNode'})
and in another laptop, I try to connect to this serve:
ray.init(address=ip1)
serve.start(http_options = ip1)
but it fails, and return the error:
ValueError: Failed to bind Ray Serve HTTP proxy to 'ip1:8000'.
Please make sure your http-host and http-port are specified correctly.
How can I connect to a remote serve via python?