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

相关文章

目录MySQL卸载环境查看是否已安装MySQL卸载mysql服务查看是否...
目录数据类型数据类型分类数值类型以TINYINT认识整型族有符号...
目录表的约束空属性非空约束(NOT NULL Constraint)默认值定...
目录函数时间日期函数:字符串函数数学函数其他函数 函数 时间...
目录使用C语言连接库的安装C APImysql_initmysql_real_conne...
目录用户用户管理查询所有用户查看当前用户查看当前连接数创...