I have RabbitMQ 3.6.6 setup on one Windows server and am trying to set it up the same way on the other server that has an older version (3. something). I did an Export then Import definitions from the older server but it seems to be missing one item....
In the RabbitMQ Management webpage, on the Overview tab, there is a
"Web context" -> Context section. On my old server, I have entries
for "RabbitMQ Management" and "Redirect to port XXXX". On the new
server, I only have "RabbitMQ Management".
How do I go about adding the "Redirect to port XXXX" context entry? I
don't seem to have an option to add or edit contexts in the UI.The program I'm using is trying to connect via port XXX and is unable to do so until I can setup that redirect/new context.
--
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.
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.
ConnectionFactory factory = new ConnectionFactory { HostName = myQueueServerPath };
I'm calling this same code above for the two different services I use RabbitMQ in. They both are using the same 3.3.0 version of RabbitMQ.Client.dll. From one service the factory.EndPoint has a port of 55672. From the other service, I get a port of 15672. Any idea what is controlling what port I am getting? I can't change the Port once the factory object is initialized. It doesn't seem to matter what I pass in for the host name, even if I pass in NULL it gives me a 55672 port.