rabbitmq的鉴权

详细内容可以查看(http://www.rabbitmq.com/access-control.html)

Rabbitmq有两种鉴权方式:一种是利用内置数据库鉴权。另一种是rabbitmq-auth-backend-http鉴权插件来实现后端鉴权。
Rabbitmq中,Authentication 和 authorisation是有区别的,authentication是“identifying who the user is”,authorisation是指“determining what the user is and isn’t allowed to do.”

Rabbitmq有一个默认的vhost和user
Rabbitmq的内置数据库会在初始化的时候存入一个名为“/”的vhost,一个名为guest的用户名和密码,并且在“/”的vhost是被授权的。
但是这个默认的用户名和密码只允许连接localhost的rabbitmq
如果想要连接远程的,需要在rabbitmq的config文件配置。

你可能感兴趣的:(计算机网络)