実現したいことと起きていること
下記の記事を参考にAWSへのデプロイを試しています。
https://qiita.com/naoki_mochizuki/items/5a1757d222806cbe0cd1
ここの「MySQLの設定」の項目で「rake db:create RAILS_ENV=production」を試すと以下のエラーが出ます。
いろいろ試してあと少しな気もするのですが詰まってしまい、対処方法を教えていただきたいです。
Access
1Couldn't create 'portfolio_production' database. Please check your configuration. 2rake aborted! 3Mysql2::Error::ConnectionError: Access denied for user 'portfolio'@'localhost' (using password: NO) 4 5Tasks: TOP => db:create 6(See full trace by running task with --trace) 7コード
試したこと
調べた結果、パスワードが空欄になっていることが原因とのことでしたのでパスワードを設定しました。
参考にしたのは下記の記事です。
https://qiita.com/Kaisyou/items/17142ff2d080d565fedc
vim config/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: taishiman1026 host: localhost development: <<: *default database: portfolio_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: portfolio_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 database: portfolio_production username: portfolio password: <%= ENV['PORTFOLIO_DATABASE_PASSWORD'] %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/14 23:28
2020/09/15 01:06
2020/09/15 12:51
2020/09/15 14:03
2020/09/16 12:36
2020/09/16 16:38