U1.18 Ubuntu Quick Start (QS): RabbitMq Enable HTTPS for Management UI - chempkovsky/CS2WPF-and-CS2XAMARIN GitHub Wiki

Preliminary steps

Create RabbitMq config file

sudo nano /etc/rabbitmq/rabbitmq.conf

Modify RabbitMq config file

  • read the article HTTPS
  • Step 2: add the lines to rabbitmq.conf
management.tcp.port       = 15672

management.ssl.port       = 15671
management.ssl.cacertfile = /var/lib/rabbitmq/certs/ca_certificate.pem
management.ssl.certfile   = /var/lib/rabbitmq/certs/server_certificate.pem
management.ssl.keyfile    = /var/lib/rabbitmq/certs/server_key.pem
management.ssl.password   = bunnies
Click to show the picture

picture

Restart service

  • Step 3: Run the commands
sudo systemctl stop rabbitmq-server
sudo systemctl start rabbitmq-server
  • Here is a result:
Click to show the picture

picture

⚠️ **GitHub.com Fallback** ⚠️