zoukankan      html  css  js  c++  java
  • activemq 学习系列(二) 常用配置

    ActiveMq 主要配置文件

    1、设置登录账号和密码

    找到  conf/jetty.xml 文件

        <bean id="securityConstraint" class="org.eclipse.jetty.util.security.Constraint">
            <property name="name" value="BASIC" />
            <property name="roles" value="user,admin" />
            <!-- set authenticate=false to disable login -->
            <property name="authenticate" value="false" />
        </bean>

    将property name为authenticate的属性value="false" 改为"true".

    在  conf/jetty-realm.properties 文件中

    # Defines users that can access the web (console, demo, etc.)
    # username: password [,rolename ...]
    admin: admin, admin
    user: user, user

    设置账号和密码:格式为  用户名:密码,角色

    2、后台管理端口

    conf/jetty.xml

    <bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start">
                 <!-- the default port number for the web console -->
            <property name="host" value="0.0.0.0"/>
            <property name="port" value="8161"/>
        </bean>

    3、持久化方式

    conf/activemq.xml

    <persistenceAdapter>
                <kahaDB directory="${activemq.data}/kahadb"/>
            </persistenceAdapter>
  • 相关阅读:
    网络流24题题解
    NOIP2018游记
    AGC016题解
    雅礼集训总结
    数学相关【真·NOIP】
    NOIP2018系列
    洛咕P4180 严格次小生成树
    矩阵乘法学习笔记
    一些比较神奇的思路
    点分治复习记
  • 原文地址:https://www.cnblogs.com/bmw320li/p/10002192.html
Copyright © 2011-2022 走看看