MQTT(MQ Telemetry Transport),消息队列遥测传输协议,轻量级的发布/订阅协议, 适用于一些条件比较苛刻的环境,进行低带宽、不可靠或间歇性的通信。目前已经是物联网消息通信事实上的标准协议了。值得一提的是mqtt提供三种不同质量的消息服务:
l “至多一次”:消息发布完全依赖底层 TCP/IP 网络。会发生消息丢失或重复。这一级别可用于如下情况,环境传感器数据,丢失一次读记录无所谓,因为不久后还会有第二次发送。
l “只有一次”:确保消息到达一次。这一级别可用于如下情况,在计费系统中,消息重复或丢失会导致不正确的结果。
下载地址:http://mosquitto.org/download/
需要准备的文件:mosquitto-1.4.11.tar.gz,libwebsockets-v1.6-stable.tar.gz
# yum -y install gcc gcc-c++c-ares-devel libuuid-devel wget cmake
解压、安装libwebsockets-v1.6-stable.tar.gz
# tar -zxvflibwebsockets-v1.6-stable.tar.gz
解压、安装libwebsockets-v1.6-stable.tar.gz
进入mosquitto-1.4.11目录,并修改config.mk支持websocket
# ln -s /usr/local/lib/libwebsockets.so.6/usr/lib64/libwebsockets.so.6
#useradd -g mosquitto mosquitto
进入目录/etc/mosquitto/,将mosquitto.conf.example拷贝一份为mosquitto.conf,将pwfile.example拷贝一份为pwfile
# mosquitto -c/etc/mosquitto/mosquitto.conf
# mosquitto_pub -h localhost -tmqtt -m "hello world"
在安装过程中,或测试过程中可能会遇到错误:
mosquitto_sub: errorwhile loading shared libraries: libmosquitto.so.1: cannot open shared objectfile: No such file or directory