[rabbitmq-discuss] RabbitMQ/Stomp on Windows
Matthias Radestock
matthias at lshift.net
Mon Jan 11 09:24:47 GMT 2010
Michael,
mjustin wrote:
> many thanks for the link. I understand that I have to create a new
> configuration file on Windows and add the required parameters.
>
> If I start RabbitMQ (on Ubuntu), the startup script (makefile) seems to pass
> parameters and logs then to the console. I am not sure what the
> configuration file should look like, I have only the output of the startup
> [...]
> I guess it is something like this:
>
> [
> {rabbit,
> [{stomp_listeners [{"10.0.2.15",61613}]},
> extra_startup_steps [{"STOMP-listeners", rabbit_stomp,kickstart}]}
> ]}
> ].
The above is syntactically invalid. It should be
[{rabbit,
[{stomp_listeners, [{"10.0.2.15",61613}]},
{extra_startup_steps, [{"STOMP-listeners", rabbit_stomp,
kickstart}]}]}].
However, that's still not right for 1.7.0, since there we switched stomp
to be a plug-in and the configuration mechanism changed accordingly.
Now, as per the README in the rabbitmq-stomp hg repo, you should only need
[{rabbit_stomp, [{listeners, [{"10.0.2.15",61613}]}]}].
Regards,
Matthias.
More information about the rabbitmq-discuss
mailing list