前提
rails 5.2.4.3
ruby 2.6.5
docker ※公式チュートリアルに沿って設定
busybox ※標準UNIXコマンドでプログラムを単一の実行ファイルに詰め込んで提供するプログラム。Docker環境でcronが動かない問題を解決するために使用しています。
上記に記載した、busyboxというプログラムを活用し、動作確認のために
「1分毎に全てのユーザーに対してメールを送信する」
というバッチ処理を設定しました。
しかし、cron実行時にいくつかのエラーが出現します。
出現しているエラーを解消するために試した以下の方法以外に、何か解決策はございますでしょうか?
また、対応が間違っている場合もご指摘いただけたらと思います。宜しくお願い致します。
問題・エラー内容
cron実行時に以下のエラーが出現してしまいます。
エラー文を調べ、色々と解決策を試しましたが、解消されませんでした。
※ターミナルにて、Rakeタスクを実行することには成功しています。
※単純に「ターミナルに'date'を1分ごとに出力させるタスクを実行する」などのcronの実行は成功しています。
PG::ConnectionBad: could not translate host name "db" to address: Name or service not known
試したこと
-
postgresコンテナに環境変数POSTGRES_PASSWORDを設定する。その値をconfig/database.ymlのpasswordに定義する。
-
database.ymlの書き換え。
database.yml
default: &default host: localhost
host: db を host: localhost に変更しました。
これを行うと、
could not connect to server: Connection refused Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432?
というエラーの内容に変わります。
これに対して、
- pgの再インストール
- pgの起動確認・
rake db:create
を実行するも、エラーの内容に変わりありませんでした。
ちなみに、rake db:create
はhost:dbのまま実行すれば、問題ないです。
該当するコード
user_mailer.rb
class UserMailer < ApplicationMailer def notify_user_mail(user) @user = user mail to: "#{@user.email}", subject: "Hello, #{@user.name}" end end
myapp/lib/tasks/notify_user_mailer.rake
namespace :notify_user_mailer do desc "挨拶するメールを発行する" task notify_user_mail: :environment do users = User.all users.each do |user| UserMailer.notify_user_mail(user).deliver end end end
バッチ処理を実行するrakefileまで移動し、taskを実行する
myapp/crontab
* * * * * cd /myapp/lib/tasks && bundle exec rake notify_user_mailer:notify_user_mail
railsとbusyboxを1つのコンテナとして起動しています。
Dockerfile
FROM ruby:2.6.5 ENV TZ=Asia/Tokyo RUN apt-get update -qq && apt-get install -y nodejs postgresql-client RUN apt-get update && apt-get install -y busybox-static RUN mkdir /myapp WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock RUN bundle install COPY . /myapp COPY crontab /var/spool/cron/crontabs/root # Add a script to be executed every time the container starts. COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 CMD ["busybox", "crond", "-l", "8", "-L", "/dev/stderr", "-f"] # Start the main process. # CMD ["rails", "server", "-b", "0.0.0.0"]
docker-compose.yml
version: '3' services: busybox: build: . volumes: - ./crontab:/var/spool/cron/crontabs/root depends_on: - db db: image: postgres environment: - POSTGRES_PASSWORD=password volumes: - ./tmp/db:/var/lib/postgresql/data web: tty: true stdin_open: true build: . command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" volumes: - .:/myapp - /myapp/vendor - /myapp/tmp - /myapp/log - /myapp/.git ports: - "3000:3000" depends_on: - db
database.yml
default: &default adapter: postgresql encoding: unicode host: db username: postgres password: password pool: 5 development: <<: *default database: myapp_development test: <<: *default database: myapp_test
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/02 02:31
2020/07/05 23:27
2020/07/07 01:39