mysql – 无法启动rails服务器

前端之家收集整理的这篇文章主要介绍了mysql – 无法启动rails服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已经安装了rails和mysql.我也安装了mysql2 gem.我通过命令创建了一个rails应用程序
 rails new try_cms -d MysqL
 它创建成功.但是当我尝试使用rails server命令运行WEBrick服务器时,我收到以下错误.

/Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2/MysqL2.bundle: dlopen(/Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2/MysqL2.bundle,9): Library not loaded: libMysqLclient.16.dylib (LoadError)
  Referenced from: /Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2/MysqL2.bundle
  Reason: image not found - /Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2/MysqL2.bundle
    from /Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2.rb:7
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:68:in `require'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:68:in `require'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:66:in `each'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:66:in `require'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:55:in `each'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler/runtime.rb:55:in `require'
    from /Library/Ruby/Gems/1.8/gems/bundler-1.0.9/lib/bundler.rb:114:in `require'
    from /Users/dilippednekar/Sites/try_cms/config/application.rb:7
    from /Library/Ruby/Gems/1.8/gems/railties-3.0.3/lib/rails/commands.rb:28:in `require'
    from /Library/Ruby/Gems/1.8/gems/railties-3.0.3/lib/rails/commands.rb:28
    from /Library/Ruby/Gems/1.8/gems/railties-3.0.3/lib/rails/commands.rb:27:in `tap'
    from /Library/Ruby/Gems/1.8/gems/railties-3.0.3/lib/rails/commands.rb:27
    from script/rails:6:in `require'
    from script/rails:6

提前致谢.

最佳答案
试试这个(见类似问题here)

sudo install_name_tool -change libMysqLclient.16.dylib /usr/local/MysqL/lib/libMysqLclient.16.dylib /Library/Ruby/Gems/1.8/gems/MysqL2-0.2.6/lib/MysqL2/MysqL2.bundle
原文链接:https://www.f2er.com/mysql/433966.html

猜你在找的MySQL相关文章