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

背景介绍

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

求助

请问是配置问题还是哪里?求各位路见不平,出手相救!!
阅读 4.8k
1 个回答

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

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

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题