本文介绍了errorError:getaddrinfo ENOTFOUND-mysql的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Node.js在c9.io上运行服务器,并尝试连接到Mysql我想我会收到此错误:
I'm running a server on c9.io using Node.js and trying to connect to MysqlI guess I get this error:
因为与数据库的连接错误.
because the connection to the db is wrong.
我正在使用它:
var connection = mysql.createConnection({
host: "REMOTE_ADDR",
user: "MYUSERNAME", // this is replaced by my username
database: "c9",
port: 3306
});
你知道怎么了吗?
谢谢!
推荐答案
一个小时后,我不知道为什么,我找到了问题.
After one hour, and I don't know why, I found the issue.
就我而言,我取代了
host: 'localhost'
作者
host: '127.0.0.1'
这篇关于errorError:getaddrinfo ENOTFOUND-mysql的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!