web-dev-qa-db-ja.com

生成エラーが発生したため、セッションをチェックアウトできません

RailsアプリがVPSで動作するようにしています。プロジェクトをデプロイし、データベースを作成して移行しました。しかし、ページにアクセスすると、次のメッセージが表示されます:

We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.

私のnginxエラーログは私にこれを示しています:

App 12380 stdout:
App 12380 stderr: *** ERROR ***: Cannot execute /home/deploy/.rvm/wrappers/Ruby-2.1.2/Ruby: No such file or directory (2)
[ 2014-11-03 11:44:12.9549 12050/7fd1a0bb8700 Pool2/Implementation.cpp:287 ]: Could not spawn process for application /home/deploy/wisemonkeys/current: An error occurred while starting up the preloader. It exited before signalling successful startup back to Phusion Passenger.
  Error ID: 20eb13ee
  Error details saved to: /tmp/passenger-error-dyuK5v.html
  Message from application: An error occurred while starting up the preloader. It exited before signalling successful startup back to Phusion Passenger. Please read <a href="https://github.com/phusion/passenger/wiki/Debugging-application-startup-problems">this article</a> for more information about this problem.<br>
<h2>Raw process output:</h2>
<pre>
*** ERROR ***: Cannot execute /home/deploy/.rvm/wrappers/Ruby-2.1.2/Ruby: No such file or directory (2)
</pre>

[ 2014-11-03 11:44:12.9630 12050/7fd19e833700 agents/HelperAgent/RequestHandler.h:2306 ]: [Client 20] Cannot checkout session because a spawning error occurred. The identifier of the error is 20eb13ee. Please see earlier logs for details about the error.

私は https://github.com/phusion/passenger/wiki/Debugging-application-startup-problems を読み込もうとしましたが、現時点ではそれはあまりにも専門的すぎます。

3
Peter Boomsma

問題が見つかりました。 RVMを使用していません/home/deploy/.rvm/wrappers/Ruby-2.1.2/Ruby:私の/etc/nginx/nginx.conf持っていた

passenger_Ruby /home/deploy/.rvm/wrappers/Ruby-2.1.2/Ruby;

しかし、私は持っている必要がありました:

passenger_Ruby /home/deploy/.rbenv/shims/Ruby;
3
Peter Boomsma