0

Is there a way to setup RabbitMQ in a way that the Firehose is autamatically enabled (for a single virtual host preferably) after a Windows or RabbitMQ service restart?

Test_me
  • 393
  • 4
  • 13

1 Answers1

2

As described in Running RabbitMQ Server as a Service (on Windows) doc,

The service runs using the rabbitmq-service.bat script in sbin.

So you can customize it to get desired behavior.

pinepain
  • 12,453
  • 3
  • 60
  • 65
  • 1
    `rabbitmq-service.bat` just register with the help of `erlsrv` Windows service for RabbitMQ. It doesn't executed every time RabbitMQ service starts, stops, etc. The original idea was to modify start process to enable firehose (maybe utilize some code from `rabbitmqctl.bat`). – pinepain Mar 13 '15 at 12:02