0
我設置2用戶在RabbitMQ的superuser
和user1
我可以登錄到的RabbitMQ與虛擬主機用戶
我參觀http://127.0.0.1:15672/
,superuser
可以登錄
但user1
登錄失敗
是否正常?可以登錄user1
還是隻有管理員可以登錄?
我設置2用戶在RabbitMQ的superuser
和user1
我可以登錄到的RabbitMQ與虛擬主機用戶
我參觀http://127.0.0.1:15672/
,superuser
可以登錄
但user1
登錄失敗
是否正常?可以登錄user1
還是隻有管理員可以登錄?
superuser
可以因爲登錄是一個administrator
但他不能添加/刪除交流/隊列等,因爲沒有訪問任何虛擬主機。
user1
無法訪問,因爲沒有任何標籤。您可以定義一個用戶並添加權限。
可以user1登錄或只有管理員可以登錄?
不,有不同類型的用戶,我報告的幫助:
Comma-separated list of tags to apply to the user. Currently supported by the management plugin:
management
User can access the management plugin
policymaker
User can access the management plugin and manage policies and parameters for the vhosts they have access to.
monitoring
User can access the management plugin and see all connections and channels as well as node-related information.
administrator
User can do everything monitoring can do, manage users, vhosts and permissions, close other user's connections, and manage policies and parameters for all vhosts.
Note that you can set any tag here; the links for the above four tags are just for convenience.
希望它有助於
太謝謝你了! – user2492364