It is simply amazing! Thanks for sharing it and keep going! I had to install azure cli in the vm in order to make it work completely, but chatGPT got this for me
i am planning to deploy mern stack microservices in azure container apps . i am using rabbitmq as message broker locally. now should i use bitnami image or should i depoloy rabbitmq management container as azure container app to use it. which is the right approach.
It depends on how you manage rabbitmq. Many organisations prefer to manage the infrastructure services like databases and messaging services centrally. In that case it is better to use PAAS services and manages the application containers. If you manage everything yourself then you can deploy the rabbitmq management container.
Here are the commands which I had ran. Please remember to update the names of the resources and resource groups for your environment az vm open-port --port 5672 --name rabbitmq ` --resource-group azure-container-app-rg az vm open-port --port 15672 --name rabbitmq ` --resource-group azure-container-app-rg --priority 1100 ssh azureuser@ cat ./bitnami_credentials sudo rabbitmqctl change_password user tCUN6UizuwTZ
This was amazing! I've been stuck with opening the ports with the Azure Portal. I wouldn't work. But with your az cli lines it worked immediately! 😃
Thanks for the feedback. Most ofthe times it is easier to use CLI as compared to portal. GLad that you found this useful.
It is simply amazing! Thanks for sharing it and keep going! I had to install azure cli in the vm in order to make it work completely, but chatGPT got this for me
Thank you very much! ♥
The cost 9 dollars per month is almost nothing compare to Azure Services and pricing. Great video, thanks!
i am planning to deploy mern stack microservices in azure container apps . i am using rabbitmq as message broker locally. now should i use bitnami image or should i depoloy rabbitmq management container as azure container app to use it. which is the right approach.
It depends on how you manage rabbitmq. Many organisations prefer to manage the infrastructure services like databases and messaging services centrally. In that case it is better to use PAAS services and manages the application containers. If you manage everything yourself then you can deploy the rabbitmq management container.
Hello, sharing those cmds next time would be extremly helpfull, but many thanks !
Thanks for the suggestion 🙏
Here are the commands which I had ran. Please remember to update the names of the resources and resource groups for your environment
az vm open-port --port 5672 --name rabbitmq `
--resource-group azure-container-app-rg
az vm open-port --port 15672 --name rabbitmq `
--resource-group azure-container-app-rg --priority 1100
ssh azureuser@
cat ./bitnami_credentials
sudo rabbitmqctl change_password user tCUN6UizuwTZ