__

Mqtt服务器搭建

测试环境:CentOS64位

1.安装基础软件

yum install gcc-c++

yum install cmake

yum install openssl-devel  //mosquitto默认支持openssl

2.下载源码包

3.解压源码包

tar xf c-ares-1.10.0.tar.gz && mv c-ares-1.10.0 /usr/local/src/

tar xf v1.3-chrome37-firefox30 -C /usr/local/src/

tar xf mosquitto-1.4.4.tar.gz -C /usr/local/src/

4.编译准备

cd /usr/local/src/mosquitto-1.4.4/

vim compiling.txt  #这个文件里有写需要的依赖包,内容如下

The following packages are required for mosquitto:

* tcp-wrappers (optional, package name libwrap0-dev)

* openssl (version 1.0.0 or greater if TLS-PSK support is needed, can be disabled)

* c-ares (for DNS-SRV support, can be disabled)

* libuuid (from e2fsprogs, can be disabled)

* On Windows, the Redhat pthreads library is required if threading support is

to be included.

To compile, run "make", but also see the file config.mk for more details on the

various options that can be compiled in.

vim config.mk  #这个文件里包含多个选项,可以选择自己需要的功能

常见功能说明

WITH_SRV
启用c-areas库,DNS查找的库
missing ares.h
WITH_UUID     
启用lib-uuid为每个连接客户端生成uuid
missing uuid.h
WITH_WEBSOCKET
启用WebSocket协议
missing libwebsockets.h

5.安装tcp-wrappers

因为本机已经有了,所以就不安装了

rpm –qa | grep tcp_wrap*

tcp_wrappers-7.6-57.el6.x86_64

tcp_wrappers-libs-7.6-57.el6.x86_64

6.编译安装c-ares

cd  /usr/local/src/c-ares-1.10.0

./configure

make

make install

7.安装libuuid

yum -y install libuuid libuuid-devel

8.安装websocket

cd /usr/local/src/libwebsockets-1.3-chrome37-firefox30/

vim README.build  #参照说明文档内容编译安装即内容如下

Generate the build files (default is Make files):

cd /path/to/src

mkdir build

cd build

cmake ..

(NOTE: The build/ directory can have any name and be located anywhere

on your filesystem, and that the argument ".." given to cmake is simply

the source directory of libwebsockets containing the CMakeLists.txt

project file. All examples in this file assumes you use "..")

NOTE2

A common option you may want to give is to set the install path, same

as --prefix= with autotools.  It defaults to /usr/local.

You can do this by, eg

cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/usr  #指定安装路径

NOTE3

On machines that want libraries in lib64, you can also add the

following to the cmake line

-DLIB_SUFFIX=64                  #指定64位库

NOTE4

If you are building against a non-distro OpenSSL (eg, in order to get

access to ALPN support only in newer OpenSSL versions) the nice way to

express that in one cmake command is eg,

-DOPENSSL_ROOT_DIR=/usr/local/ssl        #指定ssl文件位置

mkdir build; cd build;

cmake .. -DLIB_SUFFIX=64

make install

9.开始安装mosquitto服务

cd /usr/local/src/mosquitto-1.4./

make && make install && echo $?

默认文件路径

/usr/local/sbin mosquitto server
/etc/mosquitto  configure
/usr/local/bin  utility command

10.修改链接库

由于操作系统版本及架构原因,很容易出现安装之后的链接库无法被找到,如启动mosquitto客户端可能出现找不到libmosquitto.so.1文件,因此需要添加链接库路径

ln -s /usr/local/lib/libmosquitto.so.1 /usr/lib/libmosquitto.so.1

ldconfig

否则会出现注意的错误

error while loading shared libraries: libmosquitto.so.1: cannot open shared object file: No such file or directory

还有一些编译时可能会遇到的错误

mosquitto.c:871: error: ‘struct mosquitto’ has no member named ‘achan’

如果不使用可以在config.mk 把WITH_SRV功能关闭即可

 

其他问题也差不多,基本就是缺少相应的依赖包,解决办法两个

1在config.mk关闭相关选项

2 把依赖包装上

嫌麻烦可以直接yum install mosquitto mosquitto-clients –y一句话搞定上面所有

开始测试

1.添加组和用户

groupadd mosquitto

useradd –g mosquitto mosquitto

2.启用,备份和编辑配置文件

cp /etc/mosquitto/mosquitto.conf.example /etc/mosquitto/mosquitto.conf  #配置文件如下

# 服务进程的PID

#pid_file /var/run/mosquitto.pid

# 服务进程的系统用户

#user mosquitto

# 服务绑定的IP地址

#bind_address

# 服务绑定的端口号

#port 1883

# 允许的最大连接数,-1表示没有限制

#max_connections -1

# 允许匿名用户

#allow_anonymous true

可以参考官网说明http://mosquitto.org/man/mosquitto-conf-5.html

配置代理:

实验测试:在本地开启三个终端来代表发布者,服务代理,订阅者。来模拟远程测试

正常情况下:发布者 服务代理 订阅者是分别是不同的host 也就是各自IP不同

所以若要测试远程通信可以使用发布和订阅命令时加上  -h  代理服务器的地址

先在服务代理终端上开启mqtt服务

mosquitto -c /etc/mosquitto/mosquitto.conf –d

然后再打开一个终端订阅主题,模拟订阅者

mosquitto --help
mosquitto_sub -t goodafternoon   #订阅goodafternoon主题

这里如果报错:

mosquitto_sub: error while loading shared libraries: libcares.so.2: cannot open shared object file: No such file or directory

原因:找不到libcares.so.2库文件

vim /etc/ld.so.conf.d/qt-x86_64.conf

添加下面两行

/usr/local/lib64

/usr/local/lib

ldconfig  #刷新配置

然后再打开一个终端发布主题,模拟发布者

mosquitto_pub -t goodafternoon -m "hello world"  #向goodaftnoon发布消息

可以在代理B端上看到连接日志

1494420735: New connection from ::1 on port 1883.

1494420735: New client connected from ::1 as mosqsub/23455-demon-cli (c1, k60).

1494420850: New connection from ::1 on port 1883.

1494420850: New client connected from ::1 as mosqpub/23456-demon-cli (c1, k60).

1494420850: Client mosqpub/23456-demon-cli disconnected.

而在订阅A端可以收到hello world这条消息!!

本文实验参考http://www.cnblogs.com/littleatp/p/4835879.html及一些大神的文章才得出的成功。感谢各位大神的努力和汗水。

Mqtt服务器搭建的更多相关文章

  1. 常见MQTT服务器搭建与试用

    常见MQTT服务器搭建与试用   简介 MQTT(Message Queuing Telemetry Transport,消息队列遥测传输)是IBM开发的一个即时通讯协议,它比较适合于在低带宽.不可靠 ...

  2. 个人智能家居系统 - MQTT服务器搭建(centOS7.3)

    个人智能家居系统 - MQTT服务器搭建(centOS7.3) 0x00 参考 在CentOS7 上安装mosquitto1.4.1服务器,实现MQTT信息推送功能并增加websocket功能 mos ...

  3. 常见MQTT服务器搭建[转载]

    简介 MQTT(Message Queuing Telemetry Transport,消息队列遥测传输)是IBM开发的一个即时通讯协议,它比较适合于在低带宽.不可靠的网络的进行远程传感器和控制设备通 ...

  4. Apollo mqtt 服务器搭建

    html { overflow-x: initial !important } :root { --bg-color: #ffffff; --text-color: #333333; --select ...

  5. MQTT——服务器搭建(一)

    MQTT介绍 MQTT,是IBM推出的一种针对移动终端设备的基于TCP/IP的发布/预订协议,可以连接大量的远程传感器和控制设备: 轻量级的消息订阅和发布(publish/subscribe)协议 建 ...

  6. MQTT服务器搭建-mosquitto1.4.4安装指南

    Mosquitto mosquitto是一款实现了 MQTT v3.1 协议的开源的消息代理服务软件. 其提供了非常轻量级的消息数据传输协议,采用发布/订阅模式进行工作,可用于物联设备.中间件.APP ...

  7. MQTT服务器搭建--Mosquitto用户名密码配置

    Mosquitto用户认证配置 前言:基于Mosquitto服务器已经搭建成功,大部分都是采用默认的是允许匿名用户登录模式,正式上线的系统需要进行用户认证. 1.用户参数说明 Mosquitto服务器 ...

  8. MQTT服务器搭建--Apollo

    尊重原创,我是伸手党:https://blog.csdn.net/u012377333/article/details/68943416 1.Apollo下载 下载地址:http://activemq ...

  9. Windows 下 MQTT 服务器搭建之Apollo

    https://blog.csdn.net/wangh0802/article/details/84861226#%EF%BC%881%EF%BC%89%E4%B8%8B%E8%BD%BD%20Apo ...

随机推荐

  1. MYSQL数据库-约束

    约束是一种限制,它通过对表的行或列的数据做出限制,来确保表的数据的完整性.唯一性. MYSQL中,常用的几种约束: 约束类型: 主键 默认值 唯一 外键 非空 关键字: PRIMARY KEY DEF ...

  2. 20155304 2016-2017-2 《Java程序设计》第五周学习总结

    20155304 2016-2017-2 <Java程序设计>第五周学习总结 教材学习内容总结 第八章 try catch JVM会先尝试执行try区块中的内容,若发生错误且与catch后 ...

  3. React文档翻译系列(二)Hello World

    这是React文档翻译系列的第二篇,前一篇介绍了如何安装react,本篇主要介绍react的知识体系,掌握了基本的知识体系,才能更好的学习React. Hello World 开始React最简单的方 ...

  4. 性能测试培训:tomcat性能调优方法

    性能测试培训:tomcat性能调优方法   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.在poptest的loadrunner ...

  5. 老李分享:Web Services 架构 2

    服务传输层 这一层负责应用之间的消息传输.目前,该层包括了超文本传输协议(HTTP).简单邮件传输协议(SMTP).文件传输协议(FTP).以及一些新兴协议,比如块可扩展交换协议(BEEP). XML ...

  6. (删)Java线程同步实现二:Lock锁和Condition

    在上篇文章(3.Java多线程总结系列:Java的线程同步实现)中,我们介绍了用synchronized关键字实现线程同步.但在Java中还有一种方式可以实现线程同步,那就是Lock锁. 一.同步锁 ...

  7. UWP: 掌握编译型绑定 x:Bind

    在 UWP 开发中,我们在进行数据绑定时,除了可以使用传统的绑定 Binding,也可以使用全新的 x:Bind,由于后者是在程序编译时进行初始化操作(不同于 Binding,它是在运行时创建.初始化 ...

  8. WPF中的RichTextBox

    原文链接:http://blog.csdn.net/wuzhengqing1/article/details/7010902 取出richTextBox里面的内容 第一种方法:将richTextBox ...

  9. Struts2基础学习(八)—Struts2防止表单重复提交

    一.原因      用户重复提交表单在某些场合将会造成非常严重的后果.例如,在使用信用卡进行在线支付的时候,如果服务器的响应速度太 慢,用户有可能会多次点击提交按钮,而这可能导致那张信用卡上的金额被消 ...

  10. Jquery对复选框CheckBox的操作

    checkbox: 多选框 //获取选中值  checkbox:$("#checkbox_id").attr("value"): 多选框checkbox,打勾: ...