简体   繁体   中英

Creating Read only access for ActiveMQ Web Console

是否可以在ActiveMQ Web控制台中创建只读用户,我已经浏览了很多网站,但没有找到答案。

Yes, you can refer workaround mentioned in https://issues.apache.org/jira/browse/AMQ-5388 . If you are referring 5.13.+ then make changes in jetty.xml like below snippet

<bean id="securityConstraintMapping" class="org.eclipse.jetty.security.ConstraintMapping">
    <property name="constraint" ref="securityConstraint" />
    <property name="pathSpec" value="/api/*,*.jsp" />
</bean>

have made these changes and were able to have user who only has readonly access.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM