ubuntu系统mqtt服务搭建
时间: 2024-10-06 09:03:08 浏览: 33
0269-极智开发-解读ubuntu搭建MQTT Broker
在Ubuntu系统上搭建MQTT(Message Queuing Telemetry Transport)服务,通常我们会选择mosquitto作为开源轻量级的消息代理服务器。以下是简单的步骤:
1. 更新包列表并安装mosquitto:
```
sudo apt update
sudo apt install mosquitto mosquitto-clients
```
2. 启动mosquitto服务:
```
sudo systemctl start mosquitto
```
为了开机启动,可以运行:
```
sudo systemctl enable mosquitto
```
3. 配置基本访问权限(如需密码保护):
编辑`/etc/mosquitto/mosquitto.conf`文件,添加用户和设置安全选项:
```bash
sudo nano /etc/mosquitto/mosquitto.conf
```
然后添加:
```
# 认证设置
allow_anonymous false
password_file /etc/mosquitto/passwd
```
创建密码文件:
```
sudo touch /etc/mosquitto/passwd
sudo chown mosquitto:mqtt /etc/mosquitto/passwd
```
接下来,添加用户名和对应的密码到该文件。
4. 测试连接:
使用命令行客户端`mosquitto_sub`测试订阅发布,例如:
```
mosquitto_sub -h localhost -t "test/topic"
```
阅读全文