一:ActiveMQ使用的是jetty服務器, 打開conf/jetty.xml文件,找到web
<bean id="securityConstraint" class="org.eclipse.jetty.http.security.Constraint">
<property name="name" value="BASIC" />
<property name="roles" value="admin" />
<property name="authenticate" value="false" />
</bean>服務器
將property name爲authenticate的屬性value="false" 改成"true"(有的版本已經默認設置爲了true)
---------------------
二:eclipse
控制檯的登陸用戶名密碼保存在conf/jetty-realm.properties文件中,內容以下:xml
......ip
# Defines users that can access the web (console, demo, etc.)
# username: password [,rolename ...]
admin: admin, adminit
值得注意的是 用戶名和密碼的格式是console
用戶名 : 密碼 ,角色名
--------------------- class