设置 Rails 以查找 LIBMYSQL.dll 的默认位置
我在 Windows 7 上并通过 XAMPP 设置 mysql。
我现在正在启动一个新的 Rails 项目(我第一次在 Rails 中开发),并且刚刚建立了该项目。
我想启动服务器,所以我使用了rails server。然而它抱怨的是
“程序无法启动,因为您的计算机缺少 LIBMYSQL.dll”
我知道 libmysql.dll 存储在哪里,那么我如何告诉 Rails 去那里查找呢?
I am on windows 7 and set up mysql through XAMPP.
I am now starting a new rails project (my first time developing in rails), and just set up the project.
I wanted to start the server so I used rails server
. However it is complaining that
"The program can't start because LIBMYSQL.dll is missing from your computer"
I know where libmysql.dll is stored at, so how do I tell rails to look there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Libmysql.dll 文件位于 mysql 安装的 bin 目录中。
Ruby\bin 目录中还需要有它的副本。
将其复制到此处并重新启动服务器或控制台(如果您已经运行它)。
Libmysql.dll file is located in the bin directory of your mysql installation.
There also needs to be a copy of it in the Ruby\bin directory.
Copy it there and restart your server or console, if you are already run it.