mosquitto安装教程(Ubuntu 傻瓜式安装)

mosquitto安装教程(Ubuntu版)

1 更换镜像源

国内大环境都是如此,对于国外资源访问慢的问题,首先想到的是有没有现成的镜像,因为不止你一个人遇到这种问题,肯定有大能做了工作。假如没有,你可以强大起来做第一个大能。

国内知名的镜像源有很多,我就不一一列举了,Ubuntu更换镜像源的文章也是多如牛毛,我也不写了。

2 开始安装

sudo apt update
sudo apt install mosquitto

直接输入上述命令安装就完事了,配置部分直接跳过。

安装完成之后服务就会在运行状态。没有就自己启动systemctl start mosquitto

3 Broker配置

官网配置文档

Description

mosquitto.conf is the configuration file for mosquitto. This file can reside anywhere as long as mosquitto can read it. By default, mosquitto does not need a configuration file and will use the default values listed below. See mosquitto(8) for information on how to load a configuration file.

上面是官网关于配置文件mosquitto.conf的描述,默认不需要配置文件就能直接运行,当然你需要定制,还是需要配置文件,请自行参考官网文档。

上一篇:Mosquitto


下一篇:mosquitto on docker