How to check rails application production logs deployed on Engine Yard

I recently applied the rails application to "Engine Yard". For this I use the "version of the trail" for "Engine Yard". My problem is that after deploying the application, when I access the application url, it raises "Internal Server Error (500)". And I could not look at the application production environment logs to find the problem.

In the Engine Jard interface, I could only see the "deployment logs". And it does not display errors in these logs.

I tried to access the application using "ssh" from the terminal using the command: "ssh deploy@ec2-XXXXXXXXXXX.com "

But it also only displays "deployment logs" of the application.

Can someone tell me that where I can see the logs of the production environment of the application. And a process or team for him.

Thanks in advance.

+5
source share
1 answer

Connect the instance via ssh and find /data/myapp/shared/log/production.log

In the documentation that can help you: http://docs.engineyard.com/find-important-log-files.html

+6
source

All Articles