[rabbitmq-discuss] Restarting management plugin without restarting the whole server

Marek Majkowski majek04 at gmail.com
Thu Jan 20 10:42:24 GMT 2011


On Thu, Jan 20, 2011 at 06:16, Stas Krichevsky <stask312 at gmail.com> wrote:
> Management plugin stopped working recently on our production system (CentOS
> 5.5, Erlang R14B, RabbitMQ 2.2.0).
> Is there a way to restart just the plugin without restarting the whole
> server?

Good question. I'm not an expert, but this worked for me:
application:loaded_applications().
application:stop(rabbit_management).
application:stop(webmachine).
application:stop(rabbit_mochiweb).
application:stop(mochiweb).

application:start(rabbit_mochiweb).
application:start(webmachine).
application:start(rabbit_management).

But beware it can probably make things even worse.

Chers,
  Marek


More information about the rabbitmq-discuss mailing list