当前位置: 首页 > article >正文

CentOS7 内网安装mosquitto

目录

说明:

依赖需求:

安装mosquitto

新增用户

设置用户权限


说明:

        mosquitto是一款实现了消息推送协议 MQTT v3.1 的开源消息代理软件,Mosquitto轻量,适用于低功耗单板计算机到完整服务器的所有设备。Mosquitto项目还提供了用于实现MQTT客户端的C库以及非常受欢迎的mosquitto_pub和mosquitto_sub命令行MQTT客户端。

最近有IOT方向开发的需求,MQTT就选用了mosquitto:

下载地址:Download | Eclipse Mosquitto

依赖需求:

1  gcc gcc-c++ libstdc++-devel
2  openssl-devel
3  c-ares-devel
4  uuid-devel
5  libuuid-devel
6  cJSON

 

具体的依赖可以从RPM resource readline-devel 上查找对应的版本然后上传到堡垒机

通过

cat /proc/version 

此命令可以查看正在运行的内核版本信息。,然后根据信息选择对应的版本

因为涉及到make的指令,所以g++也需要安装。

RPM resource上下载的都是rpm包,使用 rpm -i(-ivh) 进行安装,过程中出现循环依赖可参考:CentOS离线安装gcc(循环依赖、冲突解决) - 知乎

安装mosquitto:

下载源码包:

https://mosquitto.org/files/source/mosquitto-2.0.15.tar.gz.asc

解压包:

tar -zxvf mosquitto-2.0.15.tar.gz

进入包中make:

cd mosquitto-2.0.15
make && make install
cd /etc/mosquitto

复制mosquitto的配置文件:

cp mosquitto.conf.example mosquitto.conf

启动测试:

# 测试启动服务
mosquitto -c /etc/mosquitto/mosquitto.conf
#测试pub 
mosquitto_pub --help

新增用户:

修改mosquitto.conf 配置文件

 3 # into mosquitto (it is recommended that TLS support should be included) then
 4 # plain text passwords are used, in which case the file should be a text file
 5 # with lines in the format:
 6 # username:password
 7 # The password (and colon) may be omitted if desired, although this
 8 # offers very little in the way of security.
 9 #
10 # See the TLS client require_certificate and use_identity_as_username options
11 # for alternative authentication options. If an auth_plugin is used as well as
12 # password_file, the auth_plugin check will be made first.
13 #打开password_file
password_file /etc/mosquitto/pwfile  
创建用户密码
1 mosquitto_passwd -c /etc/mosquitto/pwfile testa 
2 
3 mosquitto_passwd -c /etc/mosquitto/pwfile testb 

重启生效。

设置用户权限:

testa只能订阅/req/#主题、发布/res/#主题,testb正好相反

修改mosquitto.conf:

# The form is the same as for the topic keyword, but using pattern as the
# keyword.
# Pattern ACLs apply to all users even if the "user" keyword has previously
# been given.
#
# If using bridges with usernames and ACLs, connection messages can be allowed
# with the following pattern:
# pattern write $SYS/broker/connection/%c/state
#
# pattern [read|write|readwrite] <topic>
#
# Example:
#
# pattern write sensor/%u/data
#
# If an auth_plugin is used as well as acl_file, the auth_plugin check will be
# made first.
acl_file /etc/mosquitto/aclfile

修改aclfile:

cd /etc/mosquitto
cp aclfile.example aclfile
vi aclfile
 1 # This affects access control for clients with no username.
 2 topic read $SYS/#
 3 
 4 # This only affects clients with username "roger".
 5 user roger
 6 topic foo/bar
 7 
 8 
 9 # This affects all clients.
10 pattern write $SYS/broker/connection/%c/state
11 
12 
13 user testa
14 topic write /req/#
15 topic read /res/#
16 
17 user testb
18 topic read /req/#
19 topic write /res/#

重启生效。


http://www.kler.cn/a/9625.html

相关文章:

  • 今日 AI 简报 | 开源 RAG 文本分块库、AI代理自动化软件开发框架、多模态统一生成框架、在线图像背景移除等
  • influxDB 时序数据库安装 flux语法 restful接口 nodjsAPI
  • LLMs 如何处理相互矛盾的指令?指令遵循优先级实验
  • 小面馆叫号取餐流程 佳易王面馆米线店点餐叫号管理系统操作教程
  • 字节、快手、Vidu“打野”升级,AI视频小步快跑
  • MTSET可溶于DMSO、DMF、THF等有机溶剂,并在水中有轻微的溶解性,91774-25-3
  • 【单片机/普中A2】学习笔记2-LED
  • Python json详解
  • Python 进阶指南(编程轻松进阶):五、发现代码异味
  • Oracle之表的设计
  • 接口自动化测试如何做?测试老鸟总结,接口测试数据构造大全......
  • DJ3-4 传输层(第四节课)
  • java File和IO流处理
  • 高效办公——Excel表格-02篇(if函数常见用法 + 条件格式的使用)
  • 解决macOS IntelliJ IDEA 卡顿问题
  • 突发!ChatGPT疯了!
  • 热点数据和冷数据是什么?
  • Jvm学习笔记(一)内存模型
  • 强大到让人无法想象的ChatGPT-5即将发布,上千名人士却紧急叫停
  • mybatis plus同时使用逻辑删除和唯一索引的问题及解决办法
  • 亚马逊云科技赋能数据分析,完成最后一块拼图
  • 【Linux】之nc命令(连接与扫描指定端口、监测服务端口的使用情况)解析、详解实例、邮件告警
  • 腾讯38K测试良心分享,熬夜整理10万字详细软件测试面试笔记
  • selenium知识点大全
  • git查看历史提交记录
  • 基于深度学习的火焰检测系统(YOLOv5清新界面版,Python代码)