Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I deployed a basic app shell on Heroku, but it is giving me this error.

Application Error An error occurred in the application and your page could not be served. Please try again in a few moments.

If you are the application owner, check your logs for details.

I ran 'heroku logs' and it gave me this:

2013-06-13T21:02:08.867684+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path=/ host=stark-earth-3664.herokuapp.com fwd="76.222.223.146" dyno= connect= service= status=503 bytes=
2013-06-13T21:02:08.961289+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path=/favicon.ico host=stark-earth-3664.herokuapp.com fwd="76.222.223.146" dyno= connect= service= status=503 bytes=

The only change I made to the basic RoR app was change the SQLite gem files and add the DB gemfile.

Thanks in advance for your help. I cannot decipher the Heroku logs ...

J. Olivero

share|improve this question

1 Answer 1

up vote 0 down vote accepted

Your app has stopped indicates that your app might need to be restarted. Try running heroku restart.

share|improve this answer
    
restart didn't work for me. I had to scale web dyno to 1: heroku ps:scale web=1 –  Thanh Nguyen Jul 23 '13 at 14:48
    
Interesting. Had you scaled your dynos to zero? Because Heroku enables one web dyno on your app by default at the time of installation. –  zeantsoi Jul 23 '13 at 17:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.