activemq部署

目录

1.下载

2.java环境

3.解压启动

4.访问测试

5.问题记录

5.1.无法启动成功问题

5.2.其他服务器无法访问


1.下载

activemq部署_第1张图片

activemq部署_第2张图片

ActiveMQ

2.java环境

需要注意要求的jdk版本,否则启动不会成功

activemq部署_第3张图片

3.解压启动

tar -zxvf apache-activemq-5.18.2-bin.tar.gz

activemq部署_第4张图片

进入到目录下执行命令/apache-activemq-5.18.2/bin/linux-x86-64

[root@test linux-x86-64]# ./activemq
Usage: ./activemq { console | start | stop | restart | status | dump }

[root@test linux-x86-64]# ./activemq start 
Starting ActiveMQ Broker...


# 查看启动结果
[root@test data]# tail -f /home/apache-activemq-5.18.2/data/activemq.log 


# 看到下面信息代表启动成功

2023-09-22 17:40:39,153 | INFO  | ActiveMQ WebConsole available at http://0.0.0.0:8161/ | org.apache.activemq.web.WebConsoleStarter | WrapperSimpleAppMain
2023-09-22 17:40:39,153 | INFO  | ActiveMQ Jolokia REST API available at http://0.0.0.0:8161/api/jolokia/ | org.apache.activemq.web.WebConsoleStarter | WrapperSimpleAppMain

4.访问测试

访问:127.0.0.1:8161/admin/

默认账号密码都是admin

activemq部署_第5张图片

5.问题记录

5.1.无法启动成功问题

检查下载的mq版本要求的jdk版本

activemq部署_第6张图片

5.2.其他服务器无法访问

修改jetty.xml, 将host修改为0.0.0.0

路径是:/home/apache-activemq-5.18.2/conf

你可能感兴趣的:(activemq)