錯誤:「mysql2 Gem Compiled for Wrong MySQL Client Library」
當嘗試透過 Rails 應用程式連接到 MySQL伺服器時,開發人員可能會遇到以下情況錯誤:
D:/Program_Files/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': Incorrect MySQL client library version! This gem was compiled for 6.0.0 but the client library is 5.0.27. (RuntimeError)
解決方案:
要修正此問題,請使用Rails 應用程式目錄中的以下命令卸載並重新安裝mysql2 gem:
> gem uninstall mysql2 > bundle install
此程序將取得最新版本的mysql2 gem,它是為正確的 MySQL 客戶端程式庫編譯的。重新安裝完成後,gem 將按預期運行,允許應用程式成功連接到 MySQL 伺服器。
以上是如何修復 Rails 中的'mysql2 Gem Compiled for Wrong MySQL Client Library”錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!