Linux搭建MQTT服务器(mosquitto)并使用

  • 下载源码

Index of /files/source/ (mosquitto.org)

  • 解包
$ tar xf mosquitto-2.0.9.tar.gz
  • 编译准备
sudo apt install -y gcc g++ cmake openssl libssl-dev
  • 编译及安装
$ cd mosquitto-2.0.9
$ make
$ sudo make install
  • 配置文件(修改端口)
$ cd /etc/mosquitto/
$ sudo cp mosquitto.conf.example mosquitto.conf

mosquitto 2.0修改端口-CSDN博客

  • 启动
$ /usr/local/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf -d
  •  测试

你可能感兴趣的:(服务器,linux,mqtt)