Trying to wrap my head around how this stuff works, and running into some issues. I started with getting HiveMQ Edge communicating with HiveMQ cloud, and was able to get my simulator talking after some troubleshooting and typos. Now I am trying to get Edge to talk to an instance of enterprise, both running on my local PC.
To start Hive Edge, I ran the following command: sudo docker run --name hivemq-edge -d -p 1883:1883 -p 8080:8080 hivemq/hivemq-edge
For enterprise: sudo docker run -p 443:8080 -p 1884:1883 hivemq/hivemq4:latest
Notice I put 8080 on 443, and 1883 on 1884 since edge is running on the same machine, and using those ports.
For the bridge config, I tried entering localhost, as well as 127.0.0.1, but neither connects using port 1884 (Which I believe should be going to port 1883 of the container). For the username and password, I enter the defaults admin/hivemq as I haven’t changed this.
I feel like there is a fundamental piece of the puzzle I am not understanding. Anyone got ideas, or where I should try looking?