前提・実現したいこと
Railsアプリをcapistrano
を用いて自動デプロイを実装しようとしています。
引き続きエラーが発生しており、検索等かけても解決に基づくものがなかった為相談させてください。
発生している問題・エラーメッセージ
ec2-user:~/environment/toreka (master) $ bundle exec cap production deploy . . . 00:15 deploy:migrate [deploy:migrate] Run `rake db:migrate` 00:15 deploy:migrating 01 $HOME/.rbenv/bin/rbenv exec bundle exec rake db:migrate 01 rake aborted! 01 ActiveRecord::StatementInvalid: Mysql2::Error: No database selected: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT … 01 /var/www/git_toreka/shared/bundle/ruby/2.5.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:131:in `_query' 01 /var/www/git_toreka/shared/bundle/ruby/2.5.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:131:in `block in query' 01 /var/www/git_toreka/shared/bundle/ruby/2.5.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:130:in `handle_interrupt' 01 /var/www/git_toreka/shared/bundle/ruby/2.5.0/gems/mysql2-0.5.3/lib/mysql2/client.rb:130:in `query' . . .
01 ActiveRecord::StatementInvalid: Mysql2::Error: No database selected: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT …
上記箇所にてエラーが発生しているようです。
該当箇所において検索にもかけてみましたが確信付くようなものがなく止まってしまっております。
おそらくdatabase.yml
あたりの問題かとは思うのですが、
どの部分が問題かも現状推測できておりません。
該当のソースコード
database.yml
# MySQL. Versions 5.1.10 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 } %> username: root password: <%= ENV['DATABASE_PASSWORD'] %> socket: /var/lib/mysql/mysql.sock development: <<: *default database: toreka_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: toreka_test # As with config/secrets.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 http://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 <% if Rails.application.credentials.db.present? %> database: <%= Rails.application.credentials.db[:database] %> username: <%= Rails.application.credentials.db[:username] %> password: <%= Rails.application.credentials.db[:password] %> socket: <%= Rails.application.credentials.db[:socket] %> <% end %>
なお最下部に記載のあるproduction
箇所においては
EDITOR=vim bin/rails credentials:edit
で記載済みです。
試したこと
❶password箇所を空欄にする
default: &default adapter: mysql2 encoding: utf8 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> username: root password: <%= ENV['DATABASE_PASSWORD'] %> socket: /var/lib/mysql/mysql.sock
上記部分のパスワード箇所はもともと空白だったので一度空欄にしてから再度デプロイしてみましたが、
その場合Nopasswordのエラーが発生した為この箇所ではないと判断しました。
❷cloud9(開発環境)上のデータベースにログインする
開発環境の方でmysql -u root -p
するとCan't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
と出る状態だったので、開発環境でmysqlに入れないのが問題なのではないかとも考えたのですが、実際に入って再度デプロイをしたところ引き続き記載したエラーが変わらず発生しております。
補足情報(FW/ツールのバージョンなど)
ちなみにdatabase自体はec2上にも存在しているようです
mysql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | git_toreka | | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 5 rows in set (0.01 sec) mysql>
amazonlinux2
EC2
AWS
Cloud9
Rails5.2
ruby2.5.1
mysql8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。