AWS EC2サーバにて bundle exec unicorn_rails -c config/unicorn.rb -E production -Dを実行するとmaster failed to start, check stderr log for detailsと表示され起動ができないので、解決したいです。
試したことは、less log/unicorn.stderr.logでエラー確認。
ERROR -- : Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) (Mysql2::Error)
上記のエラーが表示されていました。Mysqlを繋げていたはずですが、念の為database.yml(ローカル)にて下記を確認
production: <<: *default database: songs_search_production username: root password: <%= ENV['DATABASE_PASSWORD'] %> socket: /var/lib/mysql/mysql.sock
その後、git pull origin masterし、rails db:create RAILS_ENV=productionをしましたが、
From https://github.com/Oribanda/songs_search * branch master -> FETCH_HEAD Already up-to-date.
と表示されました。念の為、rails db:migrate RAILS_ENV=productionを実行し、特に何も編集していないので何も起こりませんでした。
もう一度、bundle exec unicorn_rails -c config/unicorn.rb -E production -Dを実行するも、
master failed to start, check stderr log for detailsと同じものが表示されました。
cat /etc/os-releaseの結果
NAME="Amazon Linux AMI"
VERSION="2018.03"
ID="amzn"
ID_LIKE="rhel fedora"
VERSION_ID="2018.03"
PRETTY_NAME="Amazon Linux AMI 2018.03"
ANSI_COLOR="0;33"
CPE_NAME="cpe:/o:amazon:linux:2018.03:ga"
HOME_URL="http://aws.amazon.com/amazon-linux-ami/"
自身で調べてみて思った仮説
master failed to start, check stderr log for detailsがリモートにマスターがないと言われている事から、一度、git branch -aで確認をしてみました。
* DB設計 remotes/origin/DB設計 remotes/origin/HEAD -> origin/DB設計 remotes/origin/master
上記のように表示され、* DB設計になっていることに気付きました。
その後、リモートブランチのデフォルトブランチがDB設計になっていたので、masterに変えてDB設計を削除し、masterでコミット&プッシュとec2内でもpullをして再度、
bundle exec unicorn_rails -c config/unicorn.rb -E production -Dを実行してみましたが、変わらずmaster failed to start, check stderr log for detailsと表示され、git branch -aで再度確認するも変わらず、DB設計になっていました。
そこがmasterになれば解決できると思われますが、上手く行かないです。
理解ができておらず解決できません。
解決方法を教えて頂けると幸いです。
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。