プライベート プロジェクトへの貢献を開始するために、リポジトリを git clone しました。
mysql サーバーと rails サーバーを起動すると、次のエラーが表示されます。
Access denied for user 'root'@'localhost' (using password: YES) (Mysql2::Error)
config/database.yml ファイルで見つけたパスワードでログインしようとしましたが、成功しませんでした。ローカル環境でアプリを適切に実行するにはどうすればよいですか?
助けてくれてありがとう。
database.yml ファイル:
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: sc_development
pool: 5
username: root
password: Mysql2047
socket: /tmp/mysql.sock
# 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:
adapter: mysql2
encoding: utf8
reconnect: false
database: sc_test
pool: 5
username: root
password: Mysql2047
socket: /tmp/mysql.sock