rails4 mysql2_ruby-on-rails – Rails 4 – Gem :: LoadError:为数据库适配器指定了“mysql2”,但gem未加载...
在我的gemfile我有:
gem 'mysql2'
我的database.yml如下:
default: &default
adapter: mysql2
database:
username:
password:
host:
pool: 32
socket:
development:
<<:>
production:
<<:>
我已經(jīng)運行bundle更新和bundle安裝和我的Gemfile.lock顯示mysql2。
但是當(dāng)我運行rake db:migrate我在我的電腦和登臺服務(wù)器上得到這個:
myproject.com(master)$ rake db:migrate
WARNING: Use strings for Figaro configuration. 10000012508 was converted to "10000012508".
WARNING: Use strings for Figaro configuration. 860526407370038 was converted to "860526407370038".
rake aborted!
Gem::LoadError: Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
.....
只是為了確保沒有壞的版本的mysql2或東西,我做捆綁清理–force和運行捆綁安裝和捆綁更新再次,當(dāng)我運行g(shù)em列表我看到mysql2(0.4.0),沒有其他版本。
任何想法將最感謝。
解
它目前是Rails 4.1.x和4.2.x的一個問題,根據(jù)這個bug report,它將被固定在rails 4.2.x的下一個版本(貸記到dcorr在鏈接的評論)。
在同一時間,你可以通過將下面的行降級到版本0.3.18的mysql2通過將此行添加到您的gemfile修復(fù):
gem 'mysql2', '~> 0.3.18'
總結(jié)
以上是生活随笔為你收集整理的rails4 mysql2_ruby-on-rails – Rails 4 – Gem :: LoadError:为数据库适配器指定了“mysql2”,但gem未加载...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql稠化报表_使用Partitio
- 下一篇: jersey tomcat MySQL_