【发布时间】:2019-08-03 16:24:25
【问题描述】:
我有一个奇怪的问题,不知道问题出在哪里。如有任何帮助,我将不胜感激。
我有 Node.js 应用程序,它在本地 Windows 10 计算机上运行良好。我在 CentOS 服务器中的 Docker 中成功运行了这个应用程序。此应用程序适用于远程 MySQL 和 PostgreSQL 数据库。它工作了好几天,但今天我注意到我有错误。应用程序无法再连接到远程 MySQL 数据库。同时,如果我在本地计算机上运行应用程序或通过 DBeaver/dbForge 工具连接,我可以毫无问题地连接到远程 MySQL 数据库。
MySQL.js:
const Sequelize = require('sequelize');
const sequelize = new Sequelize('database_name', 'username', 'password', {
host: 'host',
dialect: 'mysql'
});
sequelize.authenticate().then(() => {
console.log('Connection to database has been established successfully.');
}).catch(err => {
console.error('Unable to connect to database:', err);
});
module.exports = sequelize;
routes.js:
const express = require('express');
const router = express.Router();
const sequelize = require('../configurations/MySQL');
const Sequelize = require('sequelize');
const passport = require('passport');
require('../configurations/password')(passport);
router.post('/search_by_name', passport.authenticate('jwt', {session: false}, null), function(req, res) {
const token = getToken(req.headers);
if (token) {
sequelize.query("LONG SQL QUERY", {
replacements: {
name: req.body.name,
},
type: Sequelize.QueryTypes.SELECT
}).then((locations) => {
res.status(200).send(locations)
}).catch((error) => {
res.status(400).send(error);
});
} else {
return res.status(401).send({
status: false,
description: "Unauthorized"
});
}
});
如您所见,我使用 sequelize 库将应用程序连接到远程 MySQL 数据库。我用来连接到远程 PostgreSQL 数据库的同一个库。正如我之前所说,只有当我尝试连接到 Docker 中的远程 MySQL 数据库时才会发生错误。 Docker 中的 PostgreSQL 连接没有错误。 Docker/network 内部可能存在这个问题吗?
依赖关系:
"sequelize": "^4.42.0"
"mysql2": "^1.6.4"
我还认为问题的原因可能是因为很多池/连接和 sequelize 库不会自动关闭它们。这就是为什么我多次重新启动 docker сontainer 希望确认理论。不幸的是,错误并没有消失。
你觉得怎么样,会发生什么?
错误:
Unable to connect to the database: { SequelizeConnectionError: connect ETIMEDOUT
at Utils.Promise.tap.then.catch.err (/node_modules/sequelize/lib/dialects/mysql/connection-manager.js:149:19)
at tryCatcher (/node_modules/bluebird/js/release/util.js:16:23)
at Promise._settlePromiseFromHandler (/node_modules/bluebird/js/release/promise.js:512:31)
at Promise._settlePromise (/node_modules/bluebird/js/release/promise.js:569:18)
at Promise._settlePromise0 (/node_modules/bluebird/js/release/promise.js:614:10)
at Promise._settlePromises (/node_modules/bluebird/js/release/promise.js:690:18)
at _drainQueueStep (/node_modules/bluebird/js/release/async.js:138:12)
at _drainQueue (/node_modules/bluebird/js/release/async.js:131:9)
at Async._drainQueues (/node_modules/bluebird/js/release/async.js:147:5)
at Immediate.Async.drainQueues [as _onImmediate] (/node_modules/bluebird/js/release/async.js:17:14)
at processImmediate (timers.js:632:19)
name: 'SequelizeConnectionError',
parent:
{ Error: connect ETIMEDOUT
at Connection._handleTimeoutError (/node_modules/mysql2/lib/connection.js:173:17)
at listOnTimeout (timers.js:324:15)
at processTimers (timers.js:268:5)
errorno: 'ETIMEDOUT',
code: 'ETIMEDOUT',
syscall: 'connect',
fatal: true },
original:
{ Error: connect ETIMEDOUT
at Connection._handleTimeoutError (/node_modules/mysql2/lib/connection.js:173:17)
at listOnTimeout (timers.js:324:15)
at processTimers (timers.js:268:5)
errorno: 'ETIMEDOUT',
code: 'ETIMEDOUT',
syscall: 'connect',
fatal: true }}
【问题讨论】:
标签: javascript mysql node.js docker sequelize.js