nodejs+mqtt,一启 apollo 就会报错Connection refused: Server unavailable

发布于 2022-09-07 03:48:32 字数 3072 浏览 16 评论 0

背景介绍

nodejs做服务端
依赖mqtt包 [1]: https://www.npmjs.com/package... 开启mqtt服务

主要实现代码部分如下:

var mqtt = require('mqtt');
var mqttc = {}

var options = {
    host: "127.0.0.1",
    port: 61613,
    username: "admin",
    password: "password"
}

mqttc.startMqtt = function () {

var client = mqtt.connect(options);

client.on('connect', function () {
    console.log("connected");
    client.subscribe('message');
})

client.on('message', function (topic, message) {
})


npm start后一切运行正常

 

> v@0.0.1 start D:\di\vxx-origin
> node ./bin/www

express-session deprecated undefined resave option; provide resave option app.js:40:9
express-session deprecated undefined saveUninitialized option; provide saveUninitialized option app.js:40:9
(node:9396) DeprecationWarning: `open()` is deprecated in mongoose >= 4.11.0, use `openUri()` instead, or set the `useMongoClient` option if using `connect()` or `createConnection()`. See http://mongoosejs.com/docs/4.x/docs/connections.html#use-mongo-client
connected
Mongoose connection open to mongodb://localhost:27017/mongoosesample

问题

一旦开启apollo之后,node就会报错

clipboard.png

events.js:182
      throw er; // Unhandled 'error' event
      ^

Error: Connection refused: Server unavailable
    at MqttClient._handleConnack (D:\digitalsky\vDrone-origin\node_modules\mqtt\lib\client.js:762:15)
    at MqttClient._handlePacket (D:\digitalsky\vDrone-origin\node_modules\mqtt\lib\client.js:300:12)
    at process (D:\digitalsky\vDrone-origin\node_modules\mqtt\lib\client.js:242:12)
    at Writable.writable._write (D:\digitalsky\vDrone-origin\node_modules\mqtt\lib\client.js:252:5)
    at doWrite (D:\digitalsky\vDrone-origin\node_modules\mqtt\node_modules\readable-stream\lib\_stream_writable.js:428:64)
    at writeOrBuffer (D:\digitalsky\vDrone-origin\node_modules\mqtt\node_modules\readable-stream\lib\_stream_writable.js:417:5)
    at Writable.write (D:\digitalsky\vDrone-origin\node_modules\mqtt\node_modules\readable-stream\lib\_stream_writable.js:334:11)
    at Socket.ondata (_stream_readable.js:628:20)
    at emitOne (events.js:115:13)
    at Socket.emit (events.js:210:7)
    at addChunk (_stream_readable.js:252:12)
    at readableAddChunk (_stream_readable.js:239:11)
    at Socket.Readable.push (_stream_readable.js:197:10)
    at TCP.onread (net.js:589:20)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! vdrone@0.0.1 start: `node ./bin/www`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the vdrone@0.0.1 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\aspac\AppData\Roaming\npm-cache\_logs\2018-04-25T03_36_50_149Z-debug.log

求助

请问是配置问题还是哪里?求各位路见不平,出手相救!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2022-09-14 03:48:32

自己尝试解决了,虽然不知道原因:

先启动apollo
再启动Node Server就没问题了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文