最近部署 rails 项目,遇到多起部署后不能访问的问题,记录一下排查方法
查看 nginx 日志
tail -f -n 2000 /var/log/nginx/error.log
tail -f -n 2000 /var/log/nginx/access.log
查看 unicorn 日志
tail -f -n 2000 path/to/current_project/log/unicorn.log
E, [2015-11-09T23:29:51.154676 #18211] ERROR -- : app error: Missing `secret_token` and `secret_key_base` for 'production' environment, set these values in `config/secrets.yml` (RuntimeError)
查看 sidekiq 日志
`tail -f -n 2000 path/to/current_project/log/sidekiq.log
查看 rails 运行日志
tail -f -n 2000 path/to/current_project/log/production.log