Docker rabbitmq x 1 update version –rebuild
learning-docker/prod-ish/rmq/rmq at main · spawnmarvel/learning-docker · GitHub So we always need to update our images to reflect the new version. Run (you might need to rm image/container or maybe use the –rebuild cmd) From rabbitmq – Official Image | Docker Hub the version to use now it 3.13. In my case, it was old: 3.12 […]
OIDC Integration
OIDC Integration | RabbitMQ RabbitMQ 3.11 will support practically any Authorization server compliant with OpenID Connect and OAuth 2.0 protocols. Furthermore, OAuth 2.0 authorization code grant becomes the default grant and implicit grant is no longer supported.
Docker rabbitmq x2 ssl Certificate Authority PKI
repos learning-docker/prod-ish/rmq/rmq-x2-ssl at main · spawnmarvel/learning-docker (github.com) Generate CA Server’s (client) certificate and files Let’s test the compose before we make the next certificate and use it. Client is 15672, view logs to see if it loaded all yes, good. Server is 15673,view logs to see if it loaded all and also the rabbitmq_auth_mechanism_ssl was […]
Docker rabbitmq x2 (*3-12 to 3-13)
repos learning-docker/prod-ish/rmq/rmq-x2/README.md at main · spawnmarvel/learning-docker (github.com) should be rmq-x2 (not portainer) docker compose up -d http://ip:9443 client with static shovel server Update version 14.06.2024 from 3.12 to 3.13 Test new version update Dockerfile_client, server rabbitmq:3.12-management 3.13-management Client Server
Docker rabbitmq ssl
repos learning-docker/prod-ish/rmq/rmq-ssl/README.md at main · spawnmarvel/learning-docker (github.com) Copy all the files to a VM running docker Run the generate.certificate.sh cd rmq-app bash generate.certificate_keyusage.sh docker compose up -d rmq portainer CPU and Memory is also limited
AMQP, MQTT RabbitMQ configuration with Python
GitHub – lukebakken/mqtt-client-cert-example: Example showing use of client certificates with MQTT and RabbitMQ mqtt in a nutshell quickguides/python-mqtt/README.MD at main · spawnmarvel/quickguides · GitHub Example run_pub_sensor1.py Publish * myhome/livingroom/temperature/sensor1 RabbitMQ subscribe to: * myhome.livingroom.# * myhome.livingroom.temperature.# * myhome.livingroom.temperature.sensor1. RabbitMQ queue Message Python March 21, 2023 · 24 min read Serving Millions of Clients with Native MQTT | […]
Ansible WinRM manage vm (and RabbitMQ)
Repo azure-ansible/1-4-az-existing-windows-vm/readme.md at main · spawnmarvel/azure-ansible · GitHub We are simulating an existing vm not created by ansble, and managing it after created by someone. We set up from above repos We configured an inventory and ansible.cfg and pong’d it. All code is stored in the repos. Lets make a yml and create a folder […]
RabbitMQ and ASB or AEV
Advanced Message Queueing Protocol (AMQP) 1.0 support in Service Bus AMQP allows for interconnecting connecting brokers directly, for instance using routers like Apache Qpid Dispatch Router or broker-native “shovels” like the one of RabbitMQ. https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-amqp-overview How to integrate Service Bus with RabbitMQHere’s a few scenarios in which we can make use of these capabilities: Steps: […]
Rabbitmq bidirectional shovel (GET/PUT) from VM1. VM2 server using SSL (VM1 SSL, client)
https://stackoverflow.com/questions/50045150/how-to-configure-rabbitmq-bidirectional-shovel-and-avoid-infinite-loop To simulate the scenario: VM1 setup:Deny inbound AMQP 5672 (NON-SSL) added to FWVM1 initiate connection over AMQP to VM1 (advanced.config file) (uses outbound 5672 to VM2) With two shovel in the advanced config VM2 setup:Allow inbound AMQP 5672 (NON-SSL) added to FWJust listener with empty advanced config Result:We can send data to VM2 from […]