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就会报错
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自己尝试解决了,虽然不知道原因:
先启动apollo
再启动Node Server就没问题了