2015-02-10 64 views
2

像在标题 - 当我试图在Heroku上运行数据库时,我收到此错误。heroku运行rake db:migrate - 验证错误

heroku run rake db:migrate 
Running `rake db:migrate` attached to terminal... up, run.3332 
! Authentication error 

就是这样。我遵循这个(https://devcenter.heroku.com/articles/getting-started-with-ruby#use-a-database)教程,直到现在一切进展顺利。我什至不能找到任何类似的话题。

@EDIT 我试图按照本主题:https://github.com/ddollar/heroku-accounts/issues/47
即使重新创建帐户并没有帮助。

+0

这里有一些相当不错的建议在这里对Heroku的身份验证问题:http://stackoverflow.com/questions/22957664/authentication-failure-in-heroku-cli-after-password-change – 2015-02-11 13:17:31

回答

0

运行以下命令

heroku run rake db:migrate -app APPNAME 

如果问题仍然存在 那么很可能您无权 使用这种然后根据注册在Heroku然后重试

heroku login 

输入电子邮件地址和密码。

相关问题