从NodeJS(Express App)连接到MySQL会引发错误

时间:2019-06-10 09:32:27

标签: mysql node.js express node-mysql

编辑: 解决了我的问题。删除行后

connection.connect(function(err) {
    if (err) throw err;
});

我收到原始的MySQL错误消息,提示MySQL的登录凭据错误。我已经检查过密码,但是没有注意到错误的用户名。非常抱歉,我的问题很愚蠢。


我有一个NodeJS / Express应用程序。它已经可以正常工作,但是知道我再也无法与MySQL(MariaDB)建立连接。总是我尝试使用pm2启动应用程序,但是启动失败,因为引发了异常。

我已经检查了MySQL是否正在运行,并且还重新启动了MySQL和NodeJS应用程序以及pdated node-mysql。这是我连接到mysql的代码:


//local mysql db connection
var connection = mysql.createConnection({
    host     : 'localhost',
    user     : 'root',
    password : 'xxx',
    database : 'lizenzverwaltung'
});

connection.connect(function(err) {
    if (err) throw err;
});

module.exports = connection;

启动时的错误消息是:

0|www      |     at Socket.<anonymous> (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/Connection.js:525:10)
0|www      |     at Socket.emit (events.js:182:13)
0|www      |     at Socket.EventEmitter.emit (domain.js:442:20)
0|www      |     --------------------
0|www      |     at Protocol._enqueue (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:144:48)
0|www      |     at Protocol.handshake (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:51:23)
0|www      |     at Connection.connect (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/Connection.js:119:18)
0|www      |     at Object.<anonymous> (/var/www/html/lizenzverwaltung/models/db.js:11:12)
0|www      |     at Module._compile (internal/modules/cjs/loader.js:702:30)
0|www      |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
0|www      |     at Module.load (internal/modules/cjs/loader.js:612:32)
0|www      |     at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
0|www      |     at Function.Module._load (internal/modules/cjs/loader.js:543:3)
0|www      |     at Module.require (internal/modules/cjs/loader.js:650:17)

如果我注释掉该行 if (err) throw err; 我可以启动NodeJS应用程序,但是在尝试运行SQL查询时会出现以下错误:

0|www      |     at Protocol._validateEnqueue (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:212:16)
0|www      |     at Protocol._enqueue (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:138:13)
0|www      |     at Connection.query (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/Connection.js:201:25)
0|www      |     at Function.verifyLicense [as verify] (/var/www/html/lizenzverwaltung/models/licenseModel.js:29:9)
0|www      |     at Function.LicenseController.veryLicense (/var/www/html/lizenzverwaltung/controllers/licenseController.js:51:18)
0|www      |     at /var/www/html/lizenzverwaltung/routes/license.js:33:21
0|www      |     at Layer.handle [as handle_request] (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/layer.js:95:5)
0|www      |     at next (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/route.js:137:13)
0|www      |     at Route.dispatch (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/route.js:112:3)
0|www      |     at Layer.handle [as handle_request] (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/layer.js:95:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false }
0|www      | error { Error: Cannot enqueue Query after fatal error.
0|www      |     at Protocol._validateEnqueue (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:212:16)
0|www      |     at Protocol._enqueue (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/protocol/Protocol.js:138:13)
0|www      |     at Connection.query (/var/www/html/lizenzverwaltung/node_modules/mysql/lib/Connection.js:201:25)
0|www      |     at Function.verifyLicense [as verify] (/var/www/html/lizenzverwaltung/models/licenseModel.js:29:9)
0|www      |     at Function.LicenseController.veryLicense (/var/www/html/lizenzverwaltung/controllers/licenseController.js:51:18)
0|www      |     at /var/www/html/lizenzverwaltung/routes/license.js:33:21
0|www      |     at Layer.handle [as handle_request] (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/layer.js:95:5)
0|www      |     at next (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/route.js:137:13)
0|www      |     at Route.dispatch (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/route.js:112:3)
0|www      |     at Layer.handle [as handle_request] (/var/www/html/lizenzverwaltung/node_modules/express/lib/router/layer.js:95:5) code: 'PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR', fatal: false } result null
0|www      | POST /v1/license/verify/ 200 19.128 ms - 16

我已经搜索了,但是没有找到解决方案。你有什么建议吗?我的MySQL服务器应该可以正常运行,PHPMyAdmin和Wordpress网站可以正常运行。

谢谢, 克劳斯

1 个答案:

答案 0 :(得分:0)

解决了我的问题。删除行后

0000 - 0001 = 1111 (carry flag is on)

我收到原始的MySQL错误消息,提示MySQL的登录凭据错误。我已经检查过密码,但是没有注意到错误的用户名。非常抱歉我的问题。