I have installed RabbitMQ 3.6.10 and enabled MQTT and Management plugins
My rabbitmq.config file looks like this :
{reverse_dns_lookups, true},
{vm_memory_high_watermark, 0.6},
{vm_memory_high_watermark_paging_ratio, 0.75},
{disk_free_limit, {mem_relative, 1.0}},
I have created a cluster with 2 disk nodes. When I start rabbitmq app on one of the nodes, I see following errors in log file :
=WARNING REPORT==== 15-Jun-2017::00:11:07 ===
Transport option binary unknown or invalid.
=WARNING REPORT==== 15-Jun-2017::00:11:07 ===
Transport option {packet,raw} unknown or invalid.
=WARNING REPORT==== 15-Jun-2017::00:11:07 ===
Transport option {reuseaddr,true} unknown or invalid.
What is wrong with my config file? When I Googled around for this error, I found a
post which said "
After Ranch (socket acceptor pool) has come into effect the following tcp listen options is no longer valid: binary, packet, reuseaddr."
Is this true? The above setting for binary was suggested in another RabbitMQ post to reduce the amount of memory used by binary when thousands of concurrent connections are established. What is the right way of configuring?