前提・実現したいこと
オリジナルアプリ作成中です。
AWS(EC2)デプロイ後、ローカルの見た目が本番環境に反映されないため、
dockerをbuild
し直したのですがエラーが出てしまいました。
実装の進捗も芳しくない中、今度はブラウザに表示までされなくなり
自分のアプリまで見れなくなるのかと絶望しています。
もし記述がおかしい箇所等があれば、ご教示いただけたら幸いです。
発生している問題・エラーメッセージ
Mysql2::Error::ConnectionError Access denied for user 'root'@'172.26.0.3' (using password: YES)
該当のソースコード
database.yml
# MySQL. Versions 5.5.8 and up are supported. # # Install the MySQL driver # gem install mysql2 # # Ensure the MySQL gem is defined in your Gemfile # gem 'mysql2' # # And be sure to use new-style password hashing: # https://dev.mysql.com/doc/refman/5.7/en/password-hashing.html # default: &default adapter: mysql2 encoding: utf8 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> host: <%= ENV['DB_HOST'] %> username: <%= ENV['DB_USERNAME'] %> password: <%= ENV['DB_PASSWORD'] %> socket: /tmp/mysql.sock development: <<: *default database: giver_development # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default database: giver_test # As with config/credentials.yml, you never want to store sensitive information, # like your database password, in your source code. If your source code is # ever seen by anyone, they now have access to your database. # # Instead, provide the password as a unix environment variable when you boot # the app. Read https://guides.rubyonrails.org/configuring.html#configuring-a-database # for a full rundown on how to provide these environment variables in a # production deployment. # # On Heroku and other platform providers, you may have a full connection URL # available as an environment variable. For example: # # DATABASE_URL="mysql2://myuser:mypass@localhost/somedatabase" # # You can use this database configuration with: # # production: # url: <%= ENV['DATABASE_URL'] %> # production: <<: *default database: giver_production username: <%= ENV['DB_USERNAME'] %> password: <%= ENV['DB_PASSWORD'] %> username: root password: <%= ENV['DATABASE_PASSWORD'] %> socket: /var/lib/mysql/mysql.sock
Dockerfile
FROM ruby:2.6.5 RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs yarn WORKDIR /giver COPY Gemfile ./Gemfile COPY Gemfile.lock ./Gemfile.lock RUN gem install bundler RUN bundle install COPY . /giver COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 CMD ["rails", "server", "-b", "0.0.0.0"]
docker-compose.yml
version: '3' services: db: image: mysql:5.6 environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: root ports: - "4306:3306" #Sequel ProでDBを確認する為、4306としておく volumes: - mysql-data:/var/lib/mysql env_file: db.env web: build: . command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" environment: TZ: Tokyo volumes: - .:/giver ports: - 3000:3000 depends_on: - db tty: true stdin_open: true env_file: db.env volumes: mysql-data:
試したこと
調べたところ、パスワードが誤っていて繋げられないぞ!と、言われていると思うのですが、
今まで繋がっていましたし、mysqlはパスワードを設定した記憶がありません。
以下の記事を参考にvolume削除後、buildし直しても解決に至りませんでした。
参考記事
補足情報
デプロイはCircleCIを用いてAWSのEC2へ自動デプロイを使用しております。