[rabbitmq-discuss] IPv6 issue?
    gdubicki 
    gdubicki at bidlab.pl
       
    Thu May  8 14:00:31 BST 2014
    
    
  
Hi,
For the reference I would like to report that I have had similar problem
with rabbitmq 2.6.16:
I have had IPv6 turned off in sysctl.conf via:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
..but my rabbitmq still listened on tcp6:
2014-05-08 14:43:32 root at api:~ # netstat -an|grep 5672
tcp        0      0 0.0.0.0:15672           0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:55672           0.0.0.0:*               LISTEN
tcp6       0      0 :::5672                 :::*                    LISTEN
Adding:
{tcp_listeners, [{5672, "0.0.0.0"}]}
..to rabbitmq.config *did not* help but adding:
RABBITMQ_NODE_IP_ADDRESS=0.0.0.0
..to the rabbitmq-env.conf did:
2014-05-08 14:59:27 root at api:~ # netstat -an|grep 5672
tcp        0      0 0.0.0.0:5672            0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:15672           0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:55672           0.0.0.0:*               LISTEN
--
View this message in context: http://rabbitmq.1065348.n5.nabble.com/IPv6-issue-tp11368p35422.html
Sent from the RabbitMQ mailing list archive at Nabble.com.
    
    
More information about the rabbitmq-discuss
mailing list