現在ASWcloud9上でRailsを使ったアプリを作ろうとしています。
諸事情ありデフォルトのSQLiteからMySQLに切り替えようとしていますが、
以下手順でエラーが発生してしまい、色々調べてはいるものの解決できずこちらにご相談させていただきました。
環境
・Windows10 64bit
・AWS cloud9(ubuntu)
・Ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]
・Rails 6.0.3.1
(エラーが起きた手順)
①下記URL参考にしながらcloud9上の ~/environmentでRailsのバージョンを6.0.3.1に変更
リンク内容
②rails new [アプリ名] --database=mysqlコマンド実行
→見たところ問題なく完了
③bundle update → bundle install
④rails sコマンドでサーバー起動
→以下の画面が表示される
⑤config/application.rbにエラー画面の「config.host << "略 .com"」をコピペ
⑦config/database.yml内を以下の内容に変更
([アプリ名]の箇所は実際にはアプリ名が入っている)
default:
1 adapter: mysql2 2 encoding: utf8mb4 3 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 4 username: root 5 password: a 6 socket: /var/run/mysqld/mysqld.sock 7 8development: 9 <<: *default 10 database: [アプリ名]_development 11 12test: 13 <<: *default 14 database: [アプリ名]_test 15 16production: 17 <<: *default 18 database: [アプリ名]_production 19 username: [アプリ名] 20 password: <%= ENV['[アプリ名]_DATABASE_PASSWORD'] %> 21コード
→変化なし
調べてみると⑥のAccess denied for user 'root'@'localhost'haは(using password:yes もしくはno)という文章がつくみたいですが今回のエラーではついておらず、色々試してみましたが解決することができませんでした。
申し訳ありませんがお力添えいただけるとありがたいです。
開示している情報が不足していたら申し訳ありません。
Gemfile
source
1git_source(:github) { |repo| "https://github.com/#{repo}.git" } 2 3ruby '2.6.3' 4 5# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 6gem 'rails', '~> 6.0.3', '>= 6.0.3.1' 7# Use mysql as the database for Active Record 8gem 'mysql2', '>= 0.4.4' 9# Use Puma as the app server 10gem 'puma', '~> 4.1' 11# Use SCSS for stylesheets 12gem 'sass-rails', '>= 6' 13# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker 14gem 'webpacker', '~> 4.0' 15# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 16gem 'turbolinks', '~> 5' 17# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 18gem 'jbuilder', '~> 2.7' 19# Use Redis adapter to run Action Cable in production 20# gem 'redis', '~> 4.0' 21# Use Active Model has_secure_password 22# gem 'bcrypt', '~> 3.1.7' 23 24# Use Active Storage variant 25# gem 'image_processing', '~> 1.2' 26 27# Reduces boot times through caching; required in config/boot.rb 28gem 'bootsnap', '>= 1.4.2', require: false 29 30group :development, :test do 31 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 32 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 33end 34 35group :development do 36 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 37 gem 'web-console', '>= 3.3.0' 38 gem 'listen', '~> 3.2' 39 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 40 gem 'spring' 41 gem 'spring-watcher-listen', '~> 2.0.0' 42end 43 44group :test do 45 # Adds support for Capybara system testing and selenium driver 46 gem 'capybara', '>= 2.15' 47 gem 'selenium-webdriver' 48 # Easy installation and use of web drivers to run system tests with browsers 49 gem 'webdrivers' 50end 51 52# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 53gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 54 55コード
application.rb
require_relative
1 2require 'rails/all' 3 4# Require the gems listed in Gemfile, including any gems 5# you've limited to :test, :development, or :production. 6Bundler.require(*Rails.groups) 7 8module Vc 9 class Application < Rails::Application 10 # Initialize configuration defaults for originally generated Rails version. 11 config.load_defaults 6.0 12 config.hosts << "[localhost名].vfs.cloud9.ap-northeast-1.amazonaws.com" 13 end 14end 15コード
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー