我试图连接到远程SQL服务器。 我确实从SQL Management Studio连接没有问题,但是使用下面的代码我等了2-3分钟才能得到错误ECONNRESET
,这有什么问题?为什么我要等这么多?
let mysql = require('mysql'),
express = require('express'),
bodyParser = require('body-parser'),
app = new express(),
_port = process.env.port || 3000;
let con = mysql.createConnection({
host: '***.***.***.***',
port: ****,
user: "*****",
password: "****"
});
con.connect( function (err) {
if (err) console.log(err);
console.log('connected');
})
app.get('/', (req, res) => {
res.send('ffs');
});
app.listen(_port, () => {
console.log('listening on port ' + _port);
});
mysql
版本为2.11.0
atm,但我先尝试使用最新版本。