我刚刚设置了我的数据库服务器,让我的节点网络服务器正常连接。在我的dbcommon.js文件中,我有以下内容。
var credentials = require('./db_access');
var mysql = require('mysql');
//Use this function to grab a thread from the db thread pool and connect to the db. Then it queries the db with the sql statement passed to it.
exports.executeStatement = function(pool, sql, callback){
pool.getConnection(function(err, connection){
if (err) {
callback(err);
}
else {
connection.query(sql, function(err, results, fields) {
if(!err){
connection.release();
callback(results);
} else {
connection.release();
callback(err);
}
});
}
});
};
//TODO - Own class
exports.pool = mysql.createPool({
connectionLimit: 100,
host: "host_url_goes_here",
user: credentials.user,
password: credentials.pass,
database: "bxdb",
dateStrings: true //Instead of converting to a JS Date object, return as a string
});
在我的db_access.js文件中,我有
var user = 'user123';
var pass = 'password123'; //not real
module.exports = user;
module.exports = pass;
奇怪的是,这个工作绝对正常,直到我决定尝试使用IAM密钥来访问数据库。但是,我无法让它工作(访问被拒绝错误),所以我改回现在的状态,但我仍然得到访问被拒绝错误。然而,我的朋友具有相同的代码仍然能够访问数据库而不会出现此错误。我很迷茫。 db_access.js文件与dbcommon.js文件位于同一文件夹中。
另外,我目前访问数据库的方式是否合理安全?或者我应该采取另一种方式吗? (db_access.js文件永远不会被推送到git,它只在本地可用)
答案 0 :(得分:0)
我最终将我的伙伴db_access文件复制到我的目录,它工作正常。不确定是什么问题,因为我检查了大约10次拼写错误和语法错误等。可能是一个奇怪的字符搞砸了像智能报价或其他东西。