Rexxer

Some tips for me and other

ActiveMQ + Docker + network ports conflict

We got some errors like:

When ActiveMQ started from the Docker container “Error starting userland proxy: Bind for 0.0.0.0:1883: unexpected

Error response from daemon: failed to create endpoint SpinWay on network nat: hnsCall failed in Win32: The process cannot access the file because it is being used by another process. (0x20).

Solution:

netsh int ipv4 set dynamicport tcp start=10000 num=10000

It will remap dynamic ports start point from 1000 (by default) to 10000

Comments are currently closed.