一、 继上一篇文章<<Mosquitto 介绍&安装>> 之后、本章介绍 Mosquitto 的 简单使用。
1> 创建用户
# groupadd mosquitto
# useradd -g mosquitto mosquitto
2> 程序配置
# mv /etc/mosquitto/mosquitto.conf.example /etc/mosquitto/mosquitto.conf
3> 配置说明
# 服务进程的PID #pid_file /var/run/mosquitto.pid # 服务进程的系统用户 #user mosquitto # 服务绑定的IP地址 #bind_address # 服务绑定的端口号 #port 1883 # 允许的最大连接数,-1表示没有限制 #max_connections -1 # 允许匿名用户 #allow_anonymous true
4> 启动 mosquitto
# mosquitto -c /etc/mosquitto/mosquitto.conf –d
成功启动1883端口监听
5> 测试:
5.1> 打开两个shell窗口
5.2> 订阅一个主题
# mosquitto_sub -t mqtt
5.3> 在另一窗口推送消息
# mosquitto_pub -t mqtt -h localhost -m "new location“
OK 这时会在订阅窗口看到推送的信息
new location
时间: 2024-11-09 00:35:43