1

在 Google Chrome 上将 mqttws31.js 作为 HTML 文件的一部分执行时,我遇到了以下错误。

HiveMQ 用作 MQTT 代理,日志如下

2014-10-28 14:46:45,043 INFO  - HiveMQ home directory: E:\hivemq-2.1.0
2014-10-28 14:46:45,065 INFO  - Starting HiveMQ Server
2014-10-28 14:46:48,249 WARN  - No license file found. Using free personal licensing with  restrictions to 25 connections.
2014-10-28 14:46:48,367 INFO  - Activating statistics callbacks with an interval of 60 seconds
2014-10-28 14:46:48,368 INFO  - Activating $SYS topics with an interval of 60 seconds
2014-10-28 14:46:48,728 INFO  - Starting on address 127.0.0.1 and port 1883
2014-10-28 14:46:48,734 INFO  - Started HiveMQ 2.1.0 in 3694ms

当 HTML 文件包含 MQTT 客户端时,遇到以下错误。

WebSocket connection to 'ws://127.0.0.1:1883/mqtt' failed: Connection closed before receiving a handshake response

解决此问题的任何帮助表示赞赏。

4

1 回答 1

6

您似乎没有启用 websockets,以便能够将 mqttws31.js 与 hivemq 一起使用。

在此处查看设置;http://www.hivemq.com/docs/hivemq/2.1.0/#hivemqdocs_configuration_options

Open conf/configurations.properties with your favorite editor Change websockets.enabled to true

然后在您的代码中连接到;ws://127.0.0.1:8000/mqtt

这是 hivemq 网站上的快速操作方法,http: //www.hivemq.com/hivemq-mqtt-websockets-support-message-log-plugin-2-min/

于 2014-10-29T09:45:30.853 回答