Ruby on railsの環境構築をしております。データベースにMySQLを用いようと、ともに環境構築しているのですが、MySQLの環境構築がうまくいきません。
現状では、Ruby・Ruby on railsの環境は整っております。MySQLもHomebrewでダウンロードした状態です。
rails new firstApp -d mysql
以上のコマンドで、正常にrailsのフォルダは作成されます。しかし、以下のコマンドを打つとエラーになってしまいます。
bin/rails db:create
以下、コマンドを実行した際のものです。もし、このエラーの原因をしていらっしゃる方がいましたら、お教え願います。
kentakuroki@KentaKuokinoMBP firstApp % bin/rails db:create Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) Couldn't create 'firstApp_development' database. Please check your configuration. rails aborted! ActiveRecord::ConnectionNotEstablished: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) /Users/kentakuroki/Desktop/firstApp/bin/rails:5:in `<top (required)>' /Users/kentakuroki/Desktop/firstApp/bin/spring:10:in `block in <top (required)>' /Users/kentakuroki/Desktop/firstApp/bin/spring:7:in `<top (required)>' Caused by: Mysql2::Error::ConnectionError: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) /Users/kentakuroki/Desktop/firstApp/bin/rails:5:in `<top (required)>' /Users/kentakuroki/Desktop/firstApp/bin/spring:10:in `block in <top (required)>' /Users/kentakuroki/Desktop/firstApp/bin/spring:7:in `<top (required)>' Tasks: TOP => db:create (See full trace by running task with --trace)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/19 23:35