> Hello, > I'm using uwsgi (2.0.10) legions to have a single celery beat on a EC2 > container service cluster. This is how I run uwsgi: > > docker run -it --rm -p 9988:9988 myimage uwsgi --legion "legion 0.0 > .0.0:9988 90 bf-cbc:cucu" > > then I un another container on another host, but they don't connect each > other. Debugging, I noticed a strange thing, that I don't understand: > > # telnet 127.0.0.1 9988 > Trying 127.0.0.1... > Connected to 127.0.0.1. > Escape character is '^]'. > Connection closed by foreign host. > > Using the eth0 address: > > # telnet 172.31.15.245 9988 > Trying 172.31.15.245... > telnet: Unable to connect to remote host: Connection refused > > I'm not able to connect using the external address! Port binding works for > the HTTP uwsgi port (another container). > > Suggestions? > > Thanks > -- >
Hi, the legion protocol works over UDP, not TCP -- Roberto De Ioris http://unbit.com _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
