Heroku H10 error (application crashed) - install Redmine 2.1

Although I read a lot of articles about this problem, I still could not solve this error. Here are some heroku logs, if this is less information, I would update the code of another red mine source code.

2012-11-05T14:02:54+00:00 app[web.1]: Plugins in vendor/plugins (/app/vendor/plugins) are no longer allowed. Please, put your Redmine plugins in the `plugins` directory at the root of your Redmine directory (/app/plugins) 2012-11-05T14:02:54+00:00 app[web.1]: => Booting WEBrick 2012-11-05T14:02:54+00:00 app[web.1]: => Rails 3.2.8 application starting in production on http://0.0.0.0:40115 2012-11-05T14:02:54+00:00 app[web.1]: => Call with -d to detach 2012-11-05T14:02:54+00:00 app[web.1]: => Ctrl-C to shutdown server 2012-11-05T14:02:54+00:00 app[web.1]: Exiting 2012-11-05T14:02:55+00:00 heroku[web.1]: Process exited with status 1 2012-11-05T14:02:55+00:00 heroku[web.1]: State changed from starting to crashed 2012-11-05T14:02:56+00:00 heroku[router]: Error H10 (App crashed) -> GET ceciits.herokuapp.com/ dyno= queue= wait= service= status=503 bytes= 2012-11-05T14:06:04+00:00 heroku[web.1]: State changed from crashed to down 2012-11-05T14:06:04+00:00 heroku[web.1]: Unidling 2012-11-05T14:06:04+00:00 heroku[web.1]: State changed from down to starting 2012-11-05T14:06:07+00:00 heroku[web.1]: Starting process with command `bundle exec rails server -p 3103` 2012-11-05T14:06:12+00:00 app[web.1]: Plugins in vendor/plugins (/app/vendor/plugins) are no longer allowed. Please, put your Redmine plugins in the `plugins` directory at the root of your Redmine directory (/app/plugins) 2012-11-05T14:06:12+00:00 app[web.1]: => Booting WEBrick 2012-11-05T14:06:12+00:00 app[web.1]: => Rails 3.2.8 application starting in production on http://0.0.0.0:3103 2012-11-05T14:06:12+00:00 app[web.1]: => Call with -d to detach 2012-11-05T14:06:12+00:00 app[web.1]: => Ctrl -C to shutdown server 2012-11-05T14:06:12+00:00 app[web.1]: Exiting 2012-11-05T14:06:13+00:00 heroku[web.1]: Process exited with status 1 2012-11-05T14:06:13+00:00 heroku[web.1]: State changed from starting to crashed 

I can’t understand where the reason the application actually crashed, Thanks for answering ...

+4
source share
1 answer

Just out of curiosity, did you accidentally create a secret key?

Try to run: heroku run rake generate_secret_token

Not sure if this will help, but I know that I had a problem with this before.

+2
source

Source: https://habr.com/ru/post/1444135/


All Articles