0%

使用mosquitto来搭建自己的mqtt服务器

1.安装

2.在/etc/mosquitto/mosquitto.conf配置文件

1
2
3
4
5
6
7
8
bind_address 192.168.25.2

port 1883

allow_anonymous true

#最大连接数没有限制
max_connections -1

此时192.168.25.2作为mqtt服务器

3.重启服务

1
sudo systemctl restart mosquitto.service

此时服务器已经搭建完成,并且默认使用1883端口

所有的机器可以是subcriber,也可以是publisher

4.测试:

手机A:

1
mosquitto_sub -h 192.168.25.2 -t "Test" 

手机B:
```
mosquitto_pub -h 192.168.25.2 -t “Test” -m “Hello World!”

反之也可以。