MQTT服务器搭建非常详细流程(每一步都有,CMD窗口都有)

MQTT服务器搭建非常详细流程(每一步都有,CMD窗口都有)搭建过程想搭建一个MQTT服务器,刚好找到ApacheActiveMQArtemis支持,而且是基于Java开发的,那跨平台就很方便。以下是在Windows7(64位)系统下搭建:下载首先下载ApacheActiveMQArtemis,官方地址:https://activemq.apache.org/components/artemis/download/下载bin包就可以安装随便解压Z:\apache-artemis-2.9.0创建使用cmd命令行进入cd->Z:\apa

大家好,又见面了,我是你们的朋友全栈君。

搭建过程
想搭建一个MQTT服务器,刚好找到Apache ActiveMQ Artemis支持,而且是基于Java开发的,那跨平台就很方便。
以下是在Windows7(64位)系统下搭建:
下载
首先下载Apache ActiveMQ Artemis,官方地址: https://activemq.apache.org/components/artemis/download/

下载bin包就可以

安装
随便解压Z:\apache-artemis-2.9.0

创建
使用cmd命令行进入cd->Z:\apache-artemis-2.9.0\bin目录
执行: artemis create Z:\my_artemis 回车 (Z:\my_artemis是你需要搭建服务存放的路径)
创建过程中需要设置管理员帐号和密码
Bash
Z:\apache-artemis-2.9.0\bin>artemis create Z:\my_artemis

Warning: JAVA_HOME environment variable is not set.

Creating ActiveMQ Artemis instance at: Z:\my_artemis

–user: is a mandatory property!
Please provide the default username:
admin

–password: is mandatory with this configuration:
Please provide the default password:

–allow-anonymous | –require-login: is a mandatory property!
Allow anonymous access?, valid values are Y,N,True,False
Y

Auto tuning journal …
done! Your system can make 17.86 writes per millisecond, your journal-buffer-tim
eout will be 56000

You can now start the broker by executing:

“Z:\my_artemis\bin\artemis” run

Or you can setup the broker as Windows service and run it in the background:

“Z:\my_artemis\bin\artemis-service.exe” install
“Z:\my_artemis\bin\artemis-service.exe” start

To stop the windows service:
“Z:\my_artemis\bin\artemis-service.exe” stop

To uninstall the windows service
“Z:\my_artemis\bin\artemis-service.exe” uninstall

Z:\apache-artemis-2.9.0\bin> artemis-service install回车

启动
切换到你创建服务的bin目录cd->Z:\my_artemis\bin
执行
Bash
artemis run
Bash
Z:\my_artemis\bin>artemis run 回车

Warning: JAVA_HOME environment variable is not set.

 _        _               _
/ \  ____| |_  ___ __  __(_) _____

/ _ | _ \ |/ _ \ / | |/ /
/ ___ \ | / |/ / |/| | |_
/
/ _| __
|| |||/
/
Apache ActiveMQ Artemis 2.9.0

2019-08-29 12:29:35,731 INFO [org.apache.activemq.artemis.integration.bootstrap
] AMQ101000: Starting ActiveMQ Artemis Server
2019-08-29 12:29:36,207 INFO [org.apache.activemq.artemis.core.server] AMQ22100
0: live Message Broker is starting with configuration Broker Configuration (clus
tered=false,journalDirectory=data/journal,bindingsDirectory=data/bindings,largeM
essagesDirectory=data/large-messages,pagingDirectory=data/paging)
2019-08-29 12:29:36,243 INFO [org.apache.activemq.artemis.core.server] AMQ22101
3: Using NIO Journal
2019-08-29 12:29:36,288 INFO [org.apache.activemq.artemis.core.server] AMQ22105
7: Global Max Size is being adjusted to 1/2 of the JVM max size (-Xmx). being de
fined as 536,870,912
2019-08-29 12:29:36,318 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-server]. Adding protocol support for: CORE
2019-08-29 12:29:36,319 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for:
AMQP
2019-08-29 12:29:36,320 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support fo
r: HORNETQ
2019-08-29 12:29:36,322 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-mqtt-protocol]. Adding protocol support for:
MQTT
2019-08-29 12:29:36,324 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-openwire-protocol]. Adding protocol support f
or: OPENWIRE
2019-08-29 12:29:36,325 INFO [org.apache.activemq.artemis.core.server] AMQ22104
3: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for:
STOMP
2019-08-29 12:29:36,403 INFO [org.apache.activemq.artemis.core.server] AMQ22103
4: Waiting indefinitely to obtain live lock
2019-08-29 12:29:36,404 INFO [org.apache.activemq.artemis.core.server] AMQ22103
5: Live Server Obtained live lock
2019-08-29 12:29:36,533 INFO [org.apache.activemq.artemis.core.server] AMQ22108
0: Deploying address DLQ supporting [ANYCAST]
2019-08-29 12:29:36,546 INFO [org.apache.activemq.artemis.core.server] AMQ22100
3: Deploying ANYCAST queue DLQ on address DLQ
2019-08-29 12:29:36,612 INFO [org.apache.activemq.artemis.core.server] AMQ22108
0: Deploying address ExpiryQueue supporting [ANYCAST]
2019-08-29 12:29:36,614 INFO [org.apache.activemq.artemis.core.server] AMQ22100
3: Deploying ANYCAST queue ExpiryQueue on address ExpiryQueue
2019-08-29 12:29:37,239 INFO [org.apache.activemq.artemis.core.server] AMQ22102
0: Started NIO Acceptor at 0.0.0.0:61616 for protocols [CORE,MQTT,AMQP,STOMP,HOR
NETQ,OPENWIRE]
2019-08-29 12:29:37,254 INFO [org.apache.activemq.artemis.core.server] AMQ22102
0: Started NIO Acceptor at 0.0.0.0:5445 for protocols [HORNETQ,STOMP]
2019-08-29 12:29:37,268 INFO [org.apache.activemq.artemis.core.server] AMQ22102
0: Started NIO Acceptor at 0.0.0.0:5672 for protocols [AMQP]
2019-08-29 12:29:37,282 INFO [org.apache.activemq.artemis.core.server] AMQ22102
0: Started NIO Acceptor at 0.0.0.0:1883 for protocols [MQTT]
2019-08-29 12:29:37,296 INFO [org.apache.activemq.artemis.core.server] AMQ22102
0: Started NIO Acceptor at 0.0.0.0:61613 for protocols [STOMP]
2019-08-29 12:29:37,297 INFO [org.apache.activemq.artemis.core.server] AMQ22100
7: Server is now live
2019-08-29 12:29:37,298 INFO [org.apache.activemq.artemis.core.server] AMQ22100
1: Apache ActiveMQ Artemis Message Broker version 2.9.0 [0.0.0.0, nodeID=9b68041
2-ca15-11e9-8d81-0a0027000010]
2019-08-29 12:29:37,675 INFO [org.apache.activemq.hawtio.branding.PluginContext
Listener] Initialized activemq-branding plugin
2019-08-29 12:29:37,814 INFO [org.apache.activemq.hawtio.plugin.PluginContextLi
stener] Initialized artemis-plugin plugin
2019-08-29 12:29:39,125 INFO [io.hawt.HawtioContextListener] Initialising hawti
o services
2019-08-29 12:29:39,151 INFO [io.hawt.system.ConfigManager] Configuration will
be discovered via system properties
2019-08-29 12:29:39,156 INFO [io.hawt.jmx.JmxTreeWatcher] Welcome to hawtio 1.5
.5 : http://hawt.io/ : Don’t cha wish your console was hawt like me? ?
2019-08-29 12:29:39,161 INFO [io.hawt.jmx.UploadManager] Using file upload dire
ctory: Z:\my_artemis\tmp\uploads
2019-08-29 12:29:39,195 INFO [io.hawt.web.AuthenticationFilter] Starting hawtio
authentication filter, JAAS realm: “activemq” authorized role(s): “amq” role pr
incipal classes: “org.apache.activemq.artemis.spi.core.security.jaas.RolePrincip
al”
2019-08-29 12:29:39,263 INFO [io.hawt.web.JolokiaConfiguredAgentServlet] Joloki
a overridden property: [key=policyLocation, value=file:/Z:/my_artemis/etc/\jolok
ia-access.xml]
2019-08-29 12:29:39,442 INFO [io.hawt.web.RBACMBeanInvoker] Using MBean [hawtio
:type=security,area=jmx,rank=0,name=HawtioDummyJMXSecurity] for role based acces
s control
2019-08-29 12:29:39,903 INFO [io.hawt.system.ProxyWhitelist] Initial proxy whit
elist: [localhost, 127.0.0.1, 192.168.5.12, zhong-pc, 192.168.56.1]
2019-08-29 12:29:40,428 INFO [org.apache.activemq.artemis] AMQ241001: HTTP Serv
er started at http://localhost:8161
2019-08-29 12:29:40,429 INFO [org.apache.activemq.artemis] AMQ241002: Artemis J
olokia REST API available at http://localhost:8161/console/jolokia
2019-08-29 12:29:40,430 INFO [org.apache.activemq.artemis] AMQ241004: Artemis C
onsole available at http://localhost:8161/console

安装为系统服务方式
Bash

服务安装

artemis-service install

服务启动

artemis-service start

服务卸载

sc delete <服务名>

管理:
主页:http://localhost:8161
管理地址:http://localhost:8161/console
登录用户名密码则是在上方创建时用户自己设置的用户名和密码

测试方法:

mqtt.fx的安装和使用
MQTT.fx 是目前主流的mqtt客户端,可以快速验证是否可以与IoT Hub 服务交流发布或订阅消息。设备将当前所处的状态作为MQTT主题发送给IoT Hub,每个MQTT主题topic具有不同等级的名称,如“建筑/楼层/温度。” MQTT代理服务器将接收到的主题topic发送给给所有订阅的客户端。
目前最新版下载地址(支持windows,linux,mac)
http://www.jensd.de/apps/mqttfx/1.5.0/

mqtt.fx的使用
打开软件,打开时会提示有更新,最好别点击yes,会报错,然后用不了。

想更新就从上面的网址查看是否有新版本
打开配置,首先配置MQTT 代理

接着回到主界面,点击connect连接到MQTT 代理服务器上,就可以进行订阅和发布消息测试了。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/146100.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • pycharm如何安装numpy库_四上入库

    pycharm如何安装numpy库_四上入库NumPy(NumericalPython)是Python语言的一个扩展程序库,支持大量的维度数组与矩阵运算,此外也针对数组运算提供大量的数学函数库。NumPy是一个运行速度非常快的数学库,主要用于数组计算。(一)打开PyCharm,点击设置(二)选择左侧栏目中的“项目:pythonProject”–“Python解释器”,点击右侧“+”(三)输入“numpy”,安装即可…

    2022年8月27日
    5
  • bwappxss_α·pav

    bwappxss_α·pavzeronil

    2022年9月15日
    2
  • 总结:监控系统的7大作用

    总结:监控系统的7大作用一、介绍二、详解 实时采集监控数据:包括硬件、操作系统、中间件、应用程序等各个维度的数据。 实时反馈监控状态:通过对采集的数据进行多维度统计和可视化展示,能实时体现监控对象的状态是正常还是异常。 预知故障和告警:能够提前预知故障风险,并及时发出告警信息。 辅助定位故障:提供故障发生时的各项指标数据,辅助故障分析和定位。 辅助性能调优:为性能调优提供数据支持,比如慢SQL,接口响应时间等。 辅助容量规划:为服务器、中间件以及应用集群的容量规划

    2022年7月15日
    18
  • 8位双向移位寄存器verilog设计

    8位双向移位寄存器verilog设计系统功能设计一个8位双向移位寄存器,实现并行输入数据、数据左移、右移、清空数据的功能。程序主要包括移位寄存器模块和按键去抖模块①Key1控制拨码输入:a)key_flag1,key_state1实现Key1去抖(if(key_flag1&&(!key_state1)));b)key_cnt[3:0]从0开始在每一次Key1按下后加1,累积到3后再按下Key1,key_cnt清零;c)en_num1为高4位输入使能信号,en_num2为低4位输入使能信

    2022年7月16日
    15
  • 【转载】VS工具使用——代码生成函数关系图

    【转载】VS工具使用——代码生成函数关系图

    2021年11月18日
    91
  • 某音信息案例_关于信息泄露的案例

    某音信息案例_关于信息泄露的案例抓包。抓到了一个share_url我访问过去看了下,https://www.iesdouyin.com/share/user/102064772608有数据的。那就拿数据。然后发现它的数字做了字符集映射。搞他。下载.ttf的文件,s3a.bytecdn.cn/ies/resource/falcon/douyin_falcon/static/font/iconfont_da2e2…

    2022年9月26日
    2

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号