在mac中透過終端連接mysql連線成功
透過圖形工具Navicat 連線成功
透過nodejs連接mysql失敗
程式碼:
function query(sql, params, callback) {
var op = {
host: '127.0.0.1',
port: '3306',
user: 'root',
password: '111111',
database: 'anjiecc'
};
var client = mysql.createConnection(op);
client.query(sql, function(err, data) {
if (err) {
console.log(err);
} else {
//调用dao回调函数
callback(data);
}
});
client.end();
}
連線錯誤
Access denied for user 'root'@'localhost' (using password: YES)
code: 'ER_ACCESS_DENIED_ERROR',
errno: 1045,
sqlState: '28000'
求大神指導指導,謝謝!
仅有的幸福2017-06-12 09:22:35
確定您的使用者名稱和密碼沒有輸入錯誤的話。
請確定是否有存取權限,具體可參考下篇文章:https://faceghost.com/article...
欧阳克2017-06-12 09:22:35
grant all privileges on . to 'root'@'localhost' identified by '你的密碼' with grant option;
flush privileges;