EC2でunicornを再起動しようとしたところ下記のようなエラーがでるようになりました。
以前まで動いてたのですが、unicornを停止し、再起動したところエラーを吐くようになりました。
webサイト自体も、以前まで表示されてたのですが、unicornを停止したので非表示の状態になってしまいました。
どなたか問題点や解決方法などがわかる方いらっしゃいましたら、些細なことでも構わないのでアドバイスを頂けませんでしょうか。また、必要な情報がありましたらご指摘ください。
どうぞ、よろしくお願い致します。
エラー内容↓
EC2
1$ bundle exec unicorn_rails -c /var/www/rails/APP_NAME/config/unicorn.conf.rb -D -E production 2> master failed to start, check stderr log for details
unicorn.conf.rb↓
# set lets $worker = 2 $timeout = 30 $app_dir = "/var/www/rails/APP_NAME" #自分のアプリケーション名 $listen = File.expand_path 'tmp/sockets/.unicorn.sock', $app_dir $pid = File.expand_path 'tmp/pids/unicorn.pid', $app_dir $std_log = File.expand_path 'log/unicorn.log', $app_dir # set config worker_processes $worker working_directory $app_dir stderr_path $std_log stdout_path $std_log timeout $timeout listen $listen pid $pid # loading booster preload_app true # before starting processes before_fork do |server, worker| defined?(ActiveRecord::Base) and ActiveRecord::Base.connection.disconnect! old_pid = "#{server.config[:pid]}.oldbin" if old_pid != server.pid begin Process.kill "QUIT", File.read(old_pid).to_i rescue Errno::ENOENT, Errno::ESRCH end end end # after finishing processes after_fork do |server, worker| defined?(ActiveRecord::Base) and ActiveRecord::Base.establish_connection end
bundle exec unicorn_rails -cの際のログ↓
$ tail log/unicorn.log config.ru:1:in `new' config.ru:1:in `<main>' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/lib/unicorn.rb:56:in `eval' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/lib/unicorn.rb:56:in `block in builder' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/bin/unicorn_rails:139:in `block in rails_builder' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/lib/unicorn/http_server.rb:795:in `build_app!' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/lib/unicorn/http_server.rb:139:in `start' /home/usr/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/unicorn-5.4.1/bin/unicorn_rails:209:in `<top (required)>' /home/usr/.rbenv/versions/2.6.3/bin/unicorn_rails:23:in `load' /home/usr/.rbenv/versions/2.6.3/bin/unicorn_rails:23:in `<top (required)>'
unicornの起動の確認↓
※以前は3行でていました
$ ps -ef | grep unicorn | grep -v grep usr 26325 1 7 06:56 ? 00:18:36 unicorn_rails master -E production -D -l0.0.0.0:8080
あなたの回答
tips
プレビュー