Mosquitto 使用说明
Posted 代码过客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了 Mosquitto 使用说明相关的知识,希望对你有一定的参考价值。
一、 继上一篇文章<<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
以上是关于 Mosquitto 使用说明的主要内容,如果未能解决你的问题,请参考以下文章