一、EMQX下载

1、官网下载:

https://www.emqx.io/downloads

2、选择系统版本信息进行下载

linux下安装EMQX服务器_版本信息

3、Linux系统下载及解压,上图中复制即可

wget https://www.emqx.com/en/downloads/broker/5.6.1/emqx-5.6.1-ubuntu22.04-amd64.deb
sudo apt install ./emqx-5.6.1-ubuntu22.04-amd64.deb
sudo systemctl start emqx

二、服务启动与停止 

# 进入解压缩目录
 cd emqx/
  
 # 启动命令
 ./bin/emqx start
  
 # 关闭命令
 ./bin/emqx stop