gcloud app deploy 错误(忽略 mysql2-0.3.21,因为未构建其扩展。尝试:gem pristine mysql2 --version 0.3.21)

gcloud app deploy 错误(忽略 mysql2-0.3.21,因为未构建其扩展。尝试:gem pristine mysql2 --version 0.3.21)

我在部署 GAE(GoogleAppEngine) 时遇到了麻烦。我已经完成了两个教程。

  1. https://cloud.google.com/ruby/getting-started/using-cloud-sql?hl=en
  2. https://cloud.google.com/ruby/getting-started/using-cloud-storage?hl=en

第一个教程部署成功,但是在第二个教程中,我无法部署gcloud app deploy命令。结果,我在生产应用程序中发现 500 错误。

这些是下面控制台屏幕上的错误。

Step #1: Ignoring mysql2-0.3.21 because its extensions are not built. Try: gem pristine mysql2 --version 0.3.21
Step #1: Ignoring nokogiri-1.8.2 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.2
Step #1: Ignoring sqlite3-1.3.13 because its extensions are not built. Try: gem pristine sqlite3 --version 1.3.13
Step #1: Ignoring websocket-driver-0.7.0 because its extensions are not built. Try: gem pristine websocket-driver --version 0.7.0

在我的本地机器上,我可以运行bundle install、启动 rails 服务器并访问它。

请帮我...

答案1

抱歉,这个问题我已经解决了,无法部署是因为我没有执行迁移,bundle exec rake appengine:exec -- bundle exec rake db:migrate执行完命令后,部署成功!

相关内容