docker mqqt 安装

安装

bash 复制代码
cd /data/mqqt/

目录准备

mkdir /data/mqqt/mosquitto/config/

#vim Dockerfile

bash 复制代码
# 使用官方Eclipse Mosquitto镜像作为基础镜像
FROM eclipse-mosquitto:latest
# 复制配置文件到容器内
COPY mosquitto.conf /data/mqqt/mosquitto/config/mosquitto.conf

# 暴露默认的MQTT端口和WebSocket端口
EXPOSE 1883
EXPOSE 9001
# 运行Mosquitto服务
CMD ["/usr/sbin/mosquitto", "-c", "/data/mqqt/mosquitto/config/mosquitto.conf"]

#vim mosquitto.conf

#添加你的配置内容,例如:

bash 复制代码
listener 1883
allow_anonymous true
listener 9001
protocol websockets

ip

bash 复制代码
192.168.3.100

构建Docker镜像

bash 复制代码
docker build -t custom-mosquitto .

运行Docker容器

使用以下命令运行刚才构建的Docker镜像,并确保容器对外开放端口:

bash 复制代码
docker run -d --name mosquitto -p 1883:1883 -p 9001:9001 custom-mosquitto

测试MQTT代理

bash 复制代码
sudo apt-get install mosquitto-clients

使用mosquitto_pub和mosquitto_sub测试发布和订阅消息:

topic

test/topic
测试发布下消息

bash 复制代码
mosquitto_pub -h 192.168.3.100 -t test/topic -m "Hello MQTT"

测试接收消息

bash 复制代码
mosquitto_sub -h 192.168.3.100 -t test/topic
相关推荐
大房身镇、王师傅29 分钟前
阿里云-Centos9-安装Docker-配置镜像拉取加速地址-开机自启
阿里云·docker·云计算·centos9·ceentos9docker
Nightwish361 小时前
RHCA练习1
linux·运维
tadus_zeng4 小时前
nginx关闭响应头的Server版本信息
运维·nginx
苹果醋35 小时前
Golang的并发编程异常处理
运维·vue.js·spring boot·nginx·课程设计
Danileaf_Guo6 小时前
当你买了一台Linux云主机,应该如何测试主机性能?
linux·运维·服务器
aiee7 小时前
Gitlab-Runner配置
ci/cd·docker·gitlab
特立独行的猫a7 小时前
linux下的MongoDB手动安装部署详解
linux·运维·mongodb
酥暮沐8 小时前
shell脚本回顾1
linux·运维·服务器
Lueeee.8 小时前
Linux Oled显示字符
linux·运维·服务器
xixingzhe28 小时前
linux删除用户
linux·运维·服务器