NodeJS + MySQL从localhost连接,但不是heroku

时间:2016-10-18 00:22:01

标签: mysql node.js heroku

我有一个简单的网络应用程序需要连接到我的数据库。我创建了一个名为public的用户,它只能从数据库中选择。

从localhost开始,一切都运行得很好。我在Heroku上部署了应用程序,它给了我以下错误:

  

2016-10-18T00:17:59.282323 + 00:00 app [web.1]:无法连接:(错误:连接ETIMEDOUT   2016-10-18T00:17:59.282562 + 00:00 app [web.1]:出了点问题......错误:连接ETIMEDOUT

Animation anin = new AlphaAnimation(1.0f, 0.0f);
anin.setDuration(1000);
anin.setFillAfter(true);
txtview.startAnimation(anin);

1 个答案:

答案 0 :(得分:4)

您似乎需要授权您的Heroku dynos访问RDS(从代码中的url我假设您正在使用它)。检查this link以了解步骤