###前提・実現したいこと
Ruby on railsでサービスを開発中です。
その際、mysqlを調整しているのですが、「rails s」にて
サーバーを起動させようとしたところ、下記のエラーメッセージが出てしまいました。対処法を教えて頂けないでしょうか?
###発生している問題・エラーメッセージ
/Users/TOMOAKI/.rbenv/versions/2.3.0/lib/ruby/2.3.0/psych.rb:377:in `parse': (<unknown>): mapping values are not allowed in this context at line 14 column 22 (Psych::SyntaxError)
###Config>database.yml
ruby
1# SQLite version 3.x 2# gem install sqlite3 3# 4# Ensure the SQLite 3 gem is defined in your Gemfile 5# gem 'sqlite3' 6# 7# default: &default 8# adapter: sqlite3 9# pool: 5 10# timeout: 5000 11# 12# development: 13# <<: *default 14# database: db/development.sqlite3 15# 16# Warning: The database defined as "test" will be erased and 17# re-generated from your development database when you run "rake". 18# Do not set this db to the same as development or production. 19# test: 20# <<: *default 21# database: db/test.sqlite3 22# 23# production: 24# <<: *default 25# database: db/production.sqlite3 26 27 28default: &default 29 adapter: mysql2 30 encoding: utf8 31 reconnect: false 32 pool: 5 33 socket: /tmp/mysql.sock 34 35development: 36 <<: *default 37 database: joinup_development 38 username: testuser 39 password: +e5+pa55w0rD 40 41test: 42 <<: *default 43 database: joinup_test 44 username: testuser 45 password: +e5+pa55w0rD 46 47production: 48 <<: *default 49 database: joinup_production 50 username: testuser 51 password: +e5+pa55w0rD
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/02/26 17:25