zmqctrlendpoint not support hostname.
YoannQueret opened this issue · 2 comments
YoannQueret commented
zmqctrlendpoint not support hostname.
Can not use :
zmqctrlendpoint: tcp://localhost:9400
But need to put IP :
zmqctrlendpoint: tcp://127.0.0.1:9400
/etc/hosts file is correct :
127.0.0.1 localhost
mpbraendli commented
zmq_bind()
expects tcp://<interface>:<port>
so maybe tcp://lo:9400
would work. Can you confirm?
But I agree that the example.ini
is misleading, I will fix this.
YoannQueret commented
I confirm !
Can put iface or ip address, but not hostname.