节点JS错误错误:连接ECONNREFUSED 127.0.0.1:3306

时间:2019-01-23 14:38:37

标签: mysql node.js ubuntu

我正在尝试运行此脚本:

...
.onCreate(async snap => {
    const item = snap.val()

    const newImageUrl = await asyncFunctionThatMovesImage(item.url1)
    const newImageUrl2 = await asyncFunctionThatMovesImage(item.url2)

    return snap.ref.update({
       img1: newImageUrl,
       img2: newImageUrl2
    })
})

我不断收到此错误:

var mysql = require('mysql');

var con = mysql.createConnection({
  host: "localhost",
  user: "yourusername",
  password: "yourpassword"
 });

con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");
});  

我正在使用Ubuntu 18.04。 有人可以帮忙吗..

0 个答案:

没有答案