Raspberry Pi Mosquittto MQTT Server安装 和 Windows MQTT Client测试
Sever
安装地址:Download | Eclipse Mosquitto
安装流程
-
要使用新的存储库,您应首先导入存储库包 签名密钥:
wget http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key sudo apt-key add mosquitto-repo.gpg.key
-
然后使存储库可供apt使用:
cd /etc/apt/sources.list.d/
-
然后是以下选项之一,具体取决于您正在使用的 debian 版本:
raspberry pi所使用的debian版本是bullseye。
查询版本的命令:
lsb_release -a
user@aux:/etc/apt/sources.list.d $ lsb_release -a No LSB modules are available. Distributor ID: Raspbian Description: Raspbian GNU/Linux 11 (bullseye) Release: 11 Codename: bullseye
网上搜到2020年时候,关于发布版本的说明:
下一代 Debian 正式发行版的代号为 bullseye — 发布时间尚未确定
Debian 10(buster) — 当前的稳定版(stable)
Debian 9(stretch)— 旧的稳定版(oldstable)
Debian 8(jessie) — 更旧的稳定版(oldoldstable)
Debian 7(wheezy) — 被淘汰的稳定版
Debian 6.0(squeeze) — 被淘汰的稳定版
Debian GNU/Linux 5.0(lenny) — 被淘汰的稳定版
Debian GNU/Linux 4.0(etch) — 被淘汰的稳定版
Debian GNU/Linux 3.1(sarge) — 被淘汰的稳定版没有我们要的版本,姑且安装下最后发布的buster
-
sudo wget http://repo.mosquitto.org/debian/mosquitto-jessie.list sudo wget http://repo.mosquitto.org/debian/mosquitto-stretch.list sudo wget http://repo.mosquitto.org/debian/mosquitto-buster.list
-
更新apt信息:
sudo apt-get update
-
安装
sudo apt-get install mosquitto
-
配置可远程访问
/etc/mosquitto/mosquitto.conf
末尾添加两行。不做权限控制,这样就可以匿名访问了。
# Place your local configurati