Mosquitto-1.4.15源码编译与使用(上)

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: Mosquitto-1.4.15源码编译与使用

Eclipse Mosquitto


Download | Eclipse Mosquitto


Index of /files/source/  --- download


https://github.com/eclipse/mosquitto


mosquitto.conf man page | Eclipse Mosquitto --- document


CentOS 7,mosquitto-1.4.15


1、环境依赖库的安装


yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel


yum -y install gcc gcc-c++ autoconf automake

yum -y install zlib zlib-devel openssl openssl-devel pcre-devel

yum install libstdc++-devel -y

yum install openssl-devel -y

yum install c-ares-devel -y

yum install e2fsprogs-devel -y

yum install uuid-devel -y

yum install libuuid-devel -y


2、CentOS7默认的防火墙是firewall,关掉它


关闭firewall防火墙:sudo systemctl stop firewalld.service


关闭firewall开机启动:sudo systemctl disable firewalld.service


firewall-cmd --state #查看状态


3、编译mosquitto源码


(1)切换到/home/<dir>/mosquitto-1.4.15目录下


(2)make && make install -- 本人只执行make,没有执行make install


4、运行broker


(1)tar xvzf mosquitto-1.4.15.tar.gz


把配置文件mosquitto-1.4.15/mosquitto.conf拷贝一份到mosquitto-1.4.15/src/


(2)修改mosquitto.conf,第43行,因为当前是root账号,所以新增root用户名


#user mosquitto


user root


(3)启动broker


记得先设置每个进程允许打开的最大文件数

[root@localhost src]# ulimit -n 5120000


方法1,它是个窗口进程,可以看到调试信息。


[root@localhost src]# ./mosquitto -c mosquitto.conf -v


方法2,它是个守护者进程,即使终端窗口关闭,仍然在后台运行。


[root@localhost src]# ./mosquitto -c mosquitto.conf -d


firecat注:


(1)-c表示指明参数文件;-v是可选参数,表示verbose详细打印输出的意思;-d是daemon的意思。


(2)如果使用Linux QtCreator编译和查看源码,运行时需要把mosquitto.conf拷贝到结果文件夹


/build-mosquitto-1.4.15-Desktop_Qt_5_9_1_GCC_64bit-Debug/src/


另外,需要填写命令行参数


Command line arguments:-c mosquitto.conf


5、查看和退出broker


[root@izwz91gznj4owe94k2j06uz src]# netstat -tunlp|egrep "1883"

tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      28335/./mosquitto  

tcp6       0      0 :::1883                 :::*                    LISTEN      28335/./mosquitto  

[root@izwz91gznj4owe94k2j06uz src]# netstat -tunlp|egrep "mosquitto"

tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      28335/./mosquitto  

tcp6       0      0 :::1883                 :::*                    LISTEN      28335/./mosquitto  

[root@izwz91gznj4owe94k2j06uz src]# kill -9 28335

6、客户端发布订阅测试


(1)把文件/mosquitto-1.4.15/lib/libmosquitto.so.1拷贝到/usr/lib/,然后终端执行命令ldconfig


[root@localhost]# ldconfig


(2)进入路径/mosquitto-1.4.15/client


订阅


[root@localhost client]# ./mosquitto_sub -v -t topic01


[root@localhost client]#./mosquitto_sub -h 19.128.13.196 -p 1883 -t topic01 -d


[root@localhost client]#./mosquitto_sub -h 19.128.13.196 -p 1883 -t topic01 -u firecatTerm -P in2011111 -d


[root@localhost client]#./mosquitto_sub -L mqtt://firecatTerm:in2011111@19.128.13.196:1883/topic01


其中-d表示调试模式,打印信息更丰富,选配。


-u表示username,-P表示password。


发布


[root@localhost client]# ./mosquitto_pub -t topic01 -m hello


(3)详细说明


订阅服务:

mosquitto_sub -t HelloWord

mosquitto_sub 订阅命令

-t 订阅主题

Helloworld 主题名称,可以随便取名

发布服务:

mosquitto_pub -t HelloWord -h localhost -m "Hello Word"

mosquitto_pub 发布命令

-t 发布主题

Helloworld 主题名称

-h 主机地址

localhost 发布到本地,如果远程主机直接写ip地址(不用写端口号)

-m 发布的信息

“Hello world” 发布的内容


7、mosquitto.conf参数详解

# =================================================================
# General configuration
# =================================================================
# 客户端心跳的间隔时间
#retry_interval 20
# 系统状态的刷新时间
#sys_interval 10
# 系统资源的回收时间,0表示尽快处理
#store_clean_interval 10
# 服务进程的PID
#pid_file /var/run/mosquitto.pid
# 服务进程的系统用户
#user mosquitto
# 客户端心跳消息的最大并发数
#max_inflight_messages 10
# 客户端心跳消息缓存队列
#max_queued_messages 100
# 用于设置客户端长连接的过期时间,默认永不过期
#persistent_client_expiration
# =================================================================
# Default listener
# =================================================================
# 服务绑定的IP地址
#bind_address
# 服务绑定的端口号
#port 1883
# 允许的最大连接数,-1表示没有限制
#max_connections -1
# cafile:CA证书文件
# capath:CA证书目录
# certfile:PEM证书文件
# keyfile:PEM密钥文件
#cafile
#capath
#certfile
#keyfile
# 必须提供证书以保证数据安全性
#require_certificate false
# 若require_certificate值为true,use_identity_as_username也必须为true
#use_identity_as_username false
# 启用PSK(Pre-shared-key)支持
#psk_hint
# SSL/TSL加密算法,可以使用“openssl ciphers”命令获取
# as the output of that command.
#ciphers
# =================================================================
# Persistence
# =================================================================
# 消息自动保存的间隔时间
#autosave_interval 1800
# 消息自动保存功能的开关
#autosave_on_changes false
# 持久化功能的开关
persistence true
# 持久化DB文件
#persistence_file mosquitto.db
# 持久化DB文件目录
#persistence_location /var/lib/mosquitto/
# =================================================================
# Logging
# =================================================================
# 4种日志模式:stdout、stderr、syslog、topic
# none 则表示不记日志,此配置可以提升些许性能
log_dest none
# 选择日志的级别(可设置多项)
#log_type error
#log_type warning
#log_type notice
#log_type information
# 是否记录客户端连接信息
#connection_messages true
# 是否记录日志时间
#log_timestamp true
# =================================================================
# Security
# =================================================================
# 客户端ID的前缀限制,可用于保证安全性
#clientid_prefixes
# 允许匿名用户
#allow_anonymous true
# 用户/密码文件,默认格式:username:password
#password_file
# PSK格式密码文件,默认格式:identity:key
#psk_file
# pattern write sensor/%u/data
# ACL权限配置,常用语法如下:
# 用户限制:user <username>
# 话题限制:topic [read|write] <topic>
# 正则限制:pattern write sensor/%u/data
#acl_file
# =================================================================
# Bridges
# =================================================================
# 允许服务之间使用“桥接”模式(可用于分布式部署)
#connection <name>
#address <host>[:<port>]
#topic <topic> [[[out | in | both] qos-level] local-prefix remote-prefix]
# 设置桥接的客户端ID
#clientid
# 桥接断开时,是否清除远程服务器中的消息
#cleansession false
# 是否发布桥接的状态信息
#notifications true
# 设置桥接模式下,消息将会发布到的话题地址
# $SYS/broker/connection/<clientid>/state
#notification_topic
# 设置桥接的keepalive数值
#keepalive_interval 60
# 桥接模式,目前有三种:automatic、lazy、once
#start_type automatic
# 桥接模式automatic的超时时间
#restart_timeout 30
# 桥接模式lazy的超时时间
#idle_timeout 60
# 桥接客户端的用户名
#username
# 桥接客户端的密码
#password
# bridge_cafile:桥接客户端的CA证书文件
# bridge_capath:桥接客户端的CA证书目录
# bridge_certfile:桥接客户端的PEM证书文件
# bridge_keyfile:桥接客户端的PEM密钥文件
#bridge_cafile
#bridge_capath
#bridge_certfile
#bridge_keyfile
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
相关文章
|
Linux
Linux安装Cmake
Linux安装Cmake
114 0
|
存储 Java Linux
Linux下Maven编译工具的安装配置与打包
Linux下Maven编译工具的安装配置与打包
244 0
|
4月前
|
关系型数据库 MySQL 数据库
debian11编译安装freeswitch
debian11编译安装freeswitch
102 0
|
5月前
|
应用服务中间件 Linux 网络安全
nginx安装的详细教程(包括命令行安装和编译安装)
nginx安装的详细教程(包括命令行安装和编译安装)
|
Go Windows
5个步骤搞定protoc环境安装
5个步骤搞定protoc环境安装
394 1
|
消息中间件 Linux
04 Linux下ActiveMQ的下载与安装
04 Linux下ActiveMQ的下载与安装
190 0
|
Ubuntu 安全 物联网
MQTT-mosquitto 最新版移植注意 | 学习笔记
快速学习 MQTT-mosquitto 最新版移植注意
MQTT-mosquitto 最新版移植注意 | 学习笔记
|
Ubuntu Linux
LINUX UBUNTU安装依赖库编译freeswitch
LINUX UBUNTU安装依赖库编译freeswitch
235 0
|
数据库连接 Linux 网络安全
LINUX下载编译FreeSwitch
LINUX下载编译FreeSwitch
93 0
|
存储 Android开发 数据安全/隐私保护
Mosquitto 搭建及配置
Eclipse Mosquitto是一个开源消息代理,实现了MQTT协议版本3.1和3.1.1。Mosquitto轻量,适用于低功耗单板计算机到完整服务器的所有设备。
7845 0