activemq安全设置—设置admin的用户名和密码

ActiveMQ使用的是jetty服务器, 打开conf/jetty.xml文件,找到

<beanid="adminSecurityConstraint"class="org.eclipse.jetty.util.security.Constraint">
 <propertyname="name"value="BASIC"/>
 <propertyname="roles"value="admin"/>
 <!-- set authenticate=false to disablelogin -->
 <propertyname="authenticate"value="true"/>
</bean>

将property name为authenticate的属性value="true"改为"false",登录http://localhost:8161/admin/时就不会弹出用户名密码要求输入。authenticate的属性value="true" 时,控制台的登录用户名密码保存在conf/jetty-realm.properties文件中,内容如下:

##---------------------------------------------------------------------------
##Licensed to the Apache Software Foundation (ASF) under one or more
##contributor license agreements. See the NOTICE file distributed with
## thiswork for additional information regarding copyright ownership.
## TheASF licenses this file to You under the Apache License, Version 2.0
##(the"License"); you may not use this file except in compliance with
## theLicense. You may obtain a copy of the License at
##
##http://www.apache.org/licenses/LICENSE-2.0
##
## Unlessrequired by applicable law or agreed to in writing, software
##distributed under the License is distributed on an"AS IS"BASIS,
## WITHOUTWARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## Seethe License for the specific language governing permissions and
##limitations under the License.
##---------------------------------------------------------------------------
 
# Definesusers that can access the web (console, demo, etc.)
#username: password [,rolename ...]

admin:admin, admin
user:user, user

 值得注意的是用户名和密码的格式是:用户名 : 密码 ,角色名。
时间: 2024-10-12 15:33:22

activemq安全设置—设置admin的用户名和密码的相关文章

ActiveMQ安全设置:设置admin的用户名和密码

ActiveMQ使用的是jetty服务器, 打开conf/jetty.xml文件,找到 <bean id="securityConstraint" class="org.eclipse.jetty.http.security.Constraint">        <property name="name" value="BASIC" />        <property name="

nagios监控设置monitor告警的用户名和密码

nagios监控设置monitor告警的用户名和密码默认在commands.cfg文件中定义: 其中参数解释: Vim commands.cfg文件: /usr/local/bin/sendEmail –f [email protected] –t [email protected] –s mail.test.com –u "from nagios" –xu nagios –xp p#3isoda –m happy解释:-f 表示发送者的邮箱-t 表示接收者的邮箱-s 表示SMTP服务

activemq安全设置 设置admin的用户名和密码

ActiveMQ使用的是jetty服务器, 打开conf/jetty.xml文件,找到 <bean id="securityConstraint" class="org.eclipse.jetty.http.security.Constraint">        <property name="name" value="BASIC" />        <property name="

每次都要输入用户名和密码,太烦了,快来设置 TortoiseGit 自动记住用户名和密码

之前一直想解决这个问题,都给自己找了接口忙再等会弄吧,今天搞了个番茄时间,终于解决了 1.右键文件夹空白处,选择TortoiseGit > 设置,选择 Git 2.选择 编辑全局.git/config  ,在弹出的编辑窗口中添加 [credential]   helper = store 搞定!!! 在下一次你提交GIT的时候会提示你输入一次 用户名和密码,之后 TortoiseGit 就会自动记住了,妈妈再也不用担心我的强迫症啦.

Android 设置代理(验证用户名和密码)

这几天在研究在Android中,解析网页,但是公司内容,链接外网需要代理,并需要验证用户名和密码,十分头疼,网上查了下,没有头绪,最后总算在一个外国博客中看到类似的,记录下 URL url = new URL(urlString);    String host=android.net.Proxy.getDefaultHost();    int port=android.net.Proxy.getDefaultPort();        SocketAddress address=null;

怎么设置tomcat管理员的用户名和密码

工具/原料 电脑 方法/步骤 如果我们输入错误的Tomcat管理员密码,那么就有提示如下:   从它的提示信息中,我们就能找到解决方法,请留意上图中标出的位置!   我们首先打开Tomcat的配置文件,具体如下:   我们进入Tomcat的安装了路径,如下:   我们打开"conf"文件夹,如下:   再打开"tomcat-users.xml"文件,如下:   我们将"<user username="admin" password

ios中DEBUG中记住用户名和密码

- (void)viewDidLoad { [super viewDidLoad]; #ifdef DEBUG // 设置测试使用的用户名和密码 self.nameText.text = @“xiaoshuai"; self.pwdText.text = @"123"; [self textChanged]; #endif } ios中DEBUG中记住用户名和密码,布布扣,bubuko.com

Web后端语言模拟http请求(带用户名和密码)实例代码大全

RESTful API是目前比较成熟的一套互联网应用程序的API设计理论.而随着RESTful API的成熟和流行,应用开发方面就需要以模拟http请求的方式来调用RESTful API接口:经过一段时间的IBM的云平台Blumemix的学习及语言翻译服务的应用,积累了Java.ASP.NET.Nodejs.Go.PHP.Python.Ruby等语言调用Rest API的方法,这里整理到一起,和大家分享一下. 有关RESTful API请参考:理解RESTful架构,RESTful API 设计

mongodb设置用户名和密码

需求:我们需要在一个mongodb上面新建两个数据库,每个数据库的用户名和密码不一样,讲道理来说我们直接设置admin,就可以控制所有的数据库,不过用起来总是感觉有各种问题,目前还不太熟悉mongodb,所以直接对不同的数据库设置用户名和密码,可以达到预期的效果.用mongobooster测试的时候没有输入用户名和密码会看不到数据库. mongodb的用户名和密码是对应到每个具体的数据库的. 这里记录一下一些命令: 1.首先我们启动mongodb的时候,如果需要修改就以普通方式启动 mongod