On 27/10/14 12:02,
akhiles...@paxcel.net wrote:
> Hi All,
> I am using the Rabbitmq java client.I need to implement the
> authentication and authorization from the mysql database but got
> stuck,don't know how to proceed for this.
Several auth plugins are available:
rabbitmq_auth_backend_ldap (ships with server)
rabbitmq_auth_backend_http (community plugin repo)
rabbitmq_auth_backend_amqp (ditto)
None of these can handle mysql directly.
You could either
1) Write a new plugin patterned off one of the above talking to mysql.
You'd need to do this in Erlang.
or
2) Write a bridge from one of the latter two into mysql, accepting
requests over AMQP or HTTP, and sending responses based on what mysql
tells you. You could do this in any language.
Cheers, Simon