要测试在Linux上搭建的MQTT服务器,您可以按照以下步骤操作:
安装Mosquitto
sudo apt-get install mosquitto
启动Mosquitto服务
sudo systemctl start mosquitto
sudo systemctl status mosquitto
使用mosquitto_pub发布消息
mosquitto_pub -h localhost -t "test/topic" -m "Hello MQTT"
使用mosquitto_sub订阅消息
mosquitto_sub -h localhost -t "test/topic"
通过以上步骤,您应该能够在Linux系统上成功测试搭建的MQTT服务器。