--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The list above covers all ports used by RabbitMQ and the runtime with default settings.You can see what ports are used in the management UI, `rabbitmqctl status` (in the `listeners` section) andusing tools such as netstat.I'm afraid "it's not working" is not specific enough to suggest more.
On Fri, Jul 14, 2017 at 7:34 PM, Sushil Chaudhary <sushilkuma...@gmail.com> wrote:
Quick question :We have only below ports open in Cloud for Rabbitmq cluster to communicate with each other but still, its not working for us. is there some other port we need to have open, something for erlang or anything? we can not keep all ports open so need specific port list. We are using all default ports setting, no specific configuration.
- 4369: epmd, a peer discovery service used by RabbitMQ nodes and CLI tools
- 5672, 5671: used by AMQP 0-9-1 and 1.0 clients without and with TLS
- 25672: used by Erlang distribution for inter-node and CLI tools communication and is allocated from a dynamic range (limited to a single port by default, computed as AMQP port + 20000). See networking guide for details.
- 15672: HTTP API clients and rabbitmqadmin (only if the management plugin is enabled)
- 61613, 61614: STOMP clients without and with TLS (only if the STOMP plugin is enabled)
- 1883, 8883: (MQTT clients without and with TLS, if the MQTT plugin is enabled
- 15674: STOMP-over-WebSockets clients (only if the Web STOMP plugin is enabled)
- 15675: MQTT-over-WebSockets clients (only if the Web MQTT plugin is enabled)
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
clustering | ip-10-205-84-109 | :: | 34279 |
clustering | ip-10-205-86-45 | :: | 34854 |
clustering | ip-10-205-86-50 | :: | 36037 |
clustering | ip-10-205-86-45 | :: | 38701 |
clustering | ip-10-205-85-110 | :: | 39930 |
clustering | ip-10-205-86-50 | :: | 49409 |
clustering | ip-10-205-85-110 | :: | 51655 |
clustering | ip-10-205-85-227 | :: | 54691 |
clustering | ip-10-205-86-221 | :: | 58298 |
clustering | ip-10-205-86-45 | :: | 58643 |
epmd: up and running on port 4369 with data:
name rabbit at port 40743
And this is what configured in rabbitmq.config:
{kernel, [
{inet_dist_listen_max, 44001},
{inet_dist_listen_min, 44000}
]}
does not look like, its controling dynamic empd ports.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
[
{kernel, [
{inet_dist_listen_max, 44001},
{inet_dist_listen_min, 44000}
]},
{ssl, [{versions, ['tlsv1.2']}]},
{rabbit, [
{tcp_listeners, [5672]},
{ssl_listeners, [5671]},
{num_ssl_acceptors, 250},
{ssl_options, [{cacertfile,"xa.pem"},
{certfile, "cde.pem"},
{keyfile, "abc.pem"},
{versions, ['tlsv1.2']},
{verify,verify_peer},
{fail_if_no_peer_cert,true}
]}
]}
].
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
Your config uses default distribution port which is not in the 44000-44001 range, as mentioned in the docs.Where does this range come from?Sorry but there are conflicting messages in this thread, first you want to use all defaults then you don't then you expect the port to be 44000 or 44001.What are we trying to achieve here?
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Staff Software Engineer, Pivotal/RabbitMQ
I have the following 2 configs, one I use for client library development, another is a copyplus a distribution port override:With the first one, port 25672 is used:epmd -names; rabbitmqctl status | grep clusteringepmd: up and running on port 4369 with data:name rabbit at port 25672[{clustering,25672,"::"},with the second one, port 44000 is:epmd -names; rabbitmqctl status | grep clusteringepmd: up and running on port 4369 with data:name rabbit at port 44000[{clustering,44000,"::"},HTH.
On Mon, Jul 17, 2017 at 7:10 PM, Michael Klishin <mkli...@pivotal.io> wrote:
Your config uses default distribution port which is not in the 44000-44001 range, as mentioned in the docs.Where does this range come from?Sorry but there are conflicting messages in this thread, first you want to use all defaults then you don't then you expect the port to be 44000 or 44001.What are we trying to achieve here?
--Staff Software Engineer, Pivotal/RabbitMQ
epmd -names; rabbitmqctl status | grep clustering
epmd: up and running on port 4369 with data:
name rabbit at port 39719
{listeners,[{clustering,39719,"::"},{'amqp/ssl',5671,"::"}]},
epmd -names; rabbitmqctl status | grep clustering
epmd: up and running on port 4369 with data:
name rabbit at port 44000
{listeners,[{clustering,44000,"::"},{'amqp/ssl',5671,"::"}]},
was it a bug with erlang 18..?
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.