使用moquette mqtt发布wss服务

文章目录

概要

moquette是一款不错的开源mqtt中间件,github地址:https://github.com/moquette-io/moquette。我们在发布mqtt服务的同时,是可以提供websocket服务器的,有些场景下需要用到,比如使用JS进行数据访问的。本文描述了如何进行wss的配置,即带ssl的安全连接。

一、制作的ssl证书

制作证书的方法有很多,我们这边使用腾讯云的免费证书进行制作,有效期是1年(以前阿里的也是1年,现在是3个月了,吃相难看啊)。制作完成后,下载JKS格式的证书

二、配置wss

提示:这里我并没有找到官方的配置文档,哪位同学有的话,也可以评论区留言下

我们找到了其中一个commit中提到的配置方法:Introduced WSS to fix issue #8

bash 复制代码
#*********************************************************************
# Secure Websocket port (wss)
# decommend this to enable wss
#*********************************************************************
# secure_websocket_port 8883

#*********************************************************************
# SSL tcp part
#  jks_path: define the file that contains the Java Key Store,
#            relative to the current broker home
#
#  key_store_password: is the password used to open the keystore
#
#  key_manager_password: is the password used to manage the alias in the
#            keystore
#*********************************************************************
# ssl_port 8883
#jks_path serverkeystore.jks
#key_store_password passw0rdsrv
#key_manager_password passw0rdsrv

#*********************************************************************
# The interface to bind the server
#  0.0.0.0 means "any"
#*********************************************************************

参考上面的配置,我们修改配置文件如下:

bash 复制代码
port 1883

websocket_port 50002
secure_websocket_port 50003
ssl_port 8883
jks_path /iot/config/www.xxxx.com.jks
key_store_password xxxxxx
key_manager_password xxxxxx

小结

moquette还是不错的,就是文档相对少了点,多学会看github的issue吧,里面可以解决很多问题

相关推荐
Tlog嵌入式4 天前
[项目]基于FreeRTOS的STM32四轴飞行器: 十六.激光测距定高功能
stm32·单片机·嵌入式硬件·mcu·iot
Tlog嵌入式6 天前
[项目]基于FreeRTOS的STM32四轴飞行器: 十五.PID参数调节
stm32·单片机·嵌入式硬件·mcu·iot
Wnq100727 天前
DEEPSEEK 唤醒企业视频第二春
人工智能·嵌入式硬件·物联网·机器人·音视频·iot
Tlog嵌入式8 天前
[项目]基于FreeRTOS的STM32四轴飞行器: 十二.角速度加速度滤波
stm32·单片机·嵌入式硬件·mcu·iot
luoqice12 天前
在 ARM 嵌入式 Linux 下使用 C/C++ 实现 MQTT
linux·服务器·嵌入式硬件·iot
linux_041612 天前
openvela新时代的国产开源RTOS系统
嵌入式硬件·iot
WIFI_BT_DEV13 天前
WIFI p2p连接总结
arm开发·驱动开发·物联网·网络协议·信息与通信·p2p·iot
可乐加.糖14 天前
AI大模型在物联网行业的应用场景深度解析
人工智能·物联网·语言模型·iot
物联网平台15 天前
物联网边缘计算网关是什么?
物联网·边缘计算·iot
物联网平台15 天前
腾龙T2000边缘计算网关:开启智能物联新时代
物联网·边缘计算·iot