欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

openwrt安装mosquitto、openwrt部署MQTT中间服务器

程序员文章站 2022-06-22 18:18:27
背景介绍:最近在研究5G工业网关,网关使用的是openwrt系统,现需要部署mqtt服务器。MQTT协议是一个很好的物联网协议。于是,在Openwrt路由器上安装一个MQTT中间服务器,就可以把路由器变成“局域网里的物联网中心”。以下是实现方法:使用ssh登录路由器,依次写下以下命令即可。opkg updateopkg install mosquittoopkg install mosquitto-clientopkg install libmosquitto//后面三个 也可以一起...

背景介绍:

最近在研究5G工业网关,网关使用的是openwrt系统,现需要部署mqtt服务器。MQTT协议是一个很好的物联网协议。于是,在Openwrt路由器上安装一个MQTT中间服务器,就可以把路由器变成“局域网里的物联网中心”。

以下是实现方法:

使用ssh登录路由器,依次写下以下命令即可。

opkg update
opkg install mosquitto
opkg install mosquitto-client
opkg install libmosquitto

//后面三个 也可以一起装
//opkg install mosquitto mosquitto-client libmosquitto

安装完记得去路由器的“启动项”里把mosquitto启动一下,并设置成开机启动。以便手机等移动设备可以访问到它。

/etc/init.d/mosquitto start 

查看是否启动:ps |grep mos  

启动后的端口为:1883

MQTT测试工具为:MQTT.fx

下载地址为:https://download.csdn.net/download/hehj369986957/12884387

测试方法:

安装好之后启动,配置服务器地址:

openwrt安装mosquitto、openwrt部署MQTT中间服务器

openwrt安装mosquitto、openwrt部署MQTT中间服务器

点击保存,然后点击服务器。

openwrt安装mosquitto、openwrt部署MQTT中间服务器

客户端显示收到消息,那就测试完成了。说明服务器配置成功。

openwrt安装mosquitto、openwrt部署MQTT中间服务器

本文地址:https://blog.csdn.net/hehj369986957/article/details/108782242