maxko87
maxko87

Reputation: 2940

"heroku ps" shows no processes running

Seems like a simple question, but I haven't found the answer anywhere. Running heroku ps shows nothing. heroku restart executes successfully.

Upvotes: 4

Views: 2007

Answers (2)

Pradeep S
Pradeep S

Reputation: 2347

I was doing a silly mistake. I was using

heroku run ps (since there were other commands that I was using as "run")

instead of

heroku ps. (ps is a heroku command and not a system command).

Removing run fixed the issue. Thanks.

Upvotes: 0

Jon Mountjoy
Jon Mountjoy

Reputation: 4526

Have you tried scaling one of your process types? e.g. heroku ps:scale web=1

See https://devcenter.heroku.com/articles/scaling

Upvotes: 8

Related Questions