一、定義用戶組
創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)永豐,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792
1.1 simpleAuthenticationPlugin通過在activemq.xml中配置用戶組
1.2 通過JAAS來配置用戶組
增加login.config文件
activemq { org.apache.activemq.jaas.PropertiesLoginModule required org.apache.activemq.jaas.properties.user="users.properties" org.apache.activemq.jaas.properties.group="groups.properties" reload=true; };
注:reload設(shè)置為true時(shí),用戶名和密碼在每次請(qǐng)求的時(shí)候都會(huì)重新加載,即修改之后立即生效。
增加users.properties
system=manager admin=password user=password guest=password sslclient=CN=localhost, OU=activemq.org, O=activemq.org, L=LA, ST=CA, C=US
增加groups.properties
admins=system,sslclient,client,broker1,broker2 tempDestinationAdmins=system,user,sslclient,client,broker1,broker2 users=system,user,sslclient,client,broker1,broker2 guests=guest
二、queue和topic配置不同角色的讀寫權(quán)限
注:
configuration的值要與login.config中的設(shè)置名稱相匹配,如:activemq;
ActiveMQ.Advisory.>以表達(dá)式的方式配置的topic一定要設(shè)置。因?yàn)檫B接的時(shí)候就是這種類型的主題,如果不配置此項(xiàng)話,連接會(huì)報(bào)錯(cuò)(沒有權(quán)限)。
二、broker與broker之間的連接
參考地址:http://activemq.apache.org/security.html