Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unknown heroku error

Tags:

heroku

i am experiencing following error while trying to run application on heroku

2011-06-03T11:24:25-07:00 heroku[nginx]: GET / HTTP/1.1
2011-06-03T18:24:37+00:00 heroku[router]: Error H14 (No web processes runnig)

that's the only message i am getting, and it's not even mentioned in heroku error codes at http://devcenter.heroku.com/articles/error-codes what could be the reason of this?

like image 584
Pavel K. Avatar asked Jun 03 '11 18:06

Pavel K.


2 Answers

heroku restart

made it work properly again

like image 128
Pavel K. Avatar answered Oct 05 '22 06:10

Pavel K.


As given on http://devcenter.heroku.com/articles/error-codes

H14 - No web processes running

This is most likely the result of scaling your web processes down to zero through the client.

$ heroku scale web=0

Use the heroku ps command to determine the state of your web processes.

like image 23
aseem Avatar answered Oct 05 '22 06:10

aseem