解決したいこと
Ruby on RailsにてEC2にデプロイをしました。
その際に自身が登録したgmailからAction Mailerを使い、ユーザーへメールを送りたいのですがエラーが出てしまいます。※gmailはサンプルアプリの為
解決方法を、ご存じの方はご教示頂けますと幸いです。
###【現状の挙動確認】
・ローカルでのAction Mailerは挙動確認済
・EC2にて、Action Mailer以外は挙動確認済
発生している問題・エラー
アプリ画面にて
We're sorry, but something went wrong. If you are the application owner check the logs for more information.
sudo less /var/log/nginx/error.logにて
2021/08/29 13:48:10 [error] 12597#12597: *19 connect() to unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock failed (111: Connection refused) while connecting to upstream, client: 209.141.54.8, server: "EIPアドレス", request: "GET / HTTP/1.1", upstream: "http://unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock:/", host: "EIPアドレス:80" 2021/08/29 13:48:28 [error] 12597#12597: *21 connect() to unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock failed (111: Connection refused) while connecting to upstream, client: 23.148.145.28, server: "EIPアドレス", request: "GET / HTTP/1.1", upstream: "http://unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock:/", host: "EIPアドレス:80" 2021/08/29 13:49:37 [error] 12597#12597: *23 connect() to unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock failed (111: Connection refused) while connecting to upstream, client: 106.72.133.129, server: "EIPアドレス, request: "GET /users/sign_in HTTP/1.1", upstream: "http://unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock:/users/sign_in", host: "EIPアドレス", referrer: "http://"EIPアドレス"/" 2021/08/30 07:14:23 [error] 12597#12597: *159 connect() to unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock failed (111: Connection refused) while connecting to upstream, client: 212.192.246.72, server: "EIPアドレス", request: "GET / HTTP/1.1", upstream: "http://unix:/var/www/アプリ名/shared/tmp/sockets/unicorn.sock:/", host: "EIPアドレス:80", referrer: "http://"EIPアドレス":80/left.html"
該当するソースコード
ローカル環境で挙動確認がとれており、
development.rb
ruby
1config.action_mailer.raise_delivery_errors = true 2 config.action_mailer.delivery_method = :smtp 3 config.action_mailer.smtp_settings = { 4 :enable_starttls_auto => true, 5 :address => 'smtp.gmail.com', 6 :port => '587', 7 :domain => 'smtp.gmail.com', 8 :authentication => 'plain', 9 :user_name => 'sabusuku.kanri.info@gmail.com', 10 :password => 'igvkuqlpgfapntyw' 11 }
そちらのコードに下記コードを追加で記述をしまして
ruby
1config.action_mailer.default_url_options = { host: "EIPアドレス" }
このように記述しました。
production.rb
ruby
1config.action_mailer.default_url_options = { host: "EIPアドレス" } 2 config.action_mailer.raise_delivery_errors = true 3 config.action_mailer.delivery_method = :smtp 4 config.action_mailer.smtp_settings = { 5 :enable_starttls_auto => true, 6 :address => 'smtp.gmail.com', 7 :port => '587', 8 :domain => 'smtp.gmail.com', 9 :authentication => 'plain', 10 :user_name => '自身のGメール', 11 :password => 'アプリパスワード' 12 }
自分で試したこと
エラー内容からunicorn.sock:/"を調べては見て、見直しましたが改善しませんでした。
あなたの回答
tips
プレビュー