我通过rubyforge提供的RubyInstaller 1.9.1 RC2安装了Ruby,更新了gems,并安装了rails。使用webrick一切正常。为了好玩,我使用“gem install mongrel”安装了mongrel。安装顺利:

Successfully installed gem_plugin-0.2.3
Successfully installed cgi_multipart_eof_fix-2.5.0
Successfully installed mongrel-1.1.5-x86-mingw32
3 gems installed
Installing ri documentation for gem_plugin-0.2.3...
Installing ri documentation for cgi_multipart_eof_fix-2.5.0...
Installing ri documentation for mongrel-1.1.5-x86-mingw32...
Updating class cache with 1162 classes...
Installing RDoc documentation for gem_plugin-0.2.3...
Installing RDoc documentation for cgi_multipart_eof_fix-2.5.0...
Installing RDoc documentation for mongrel-1.1.5-x86-mingw32...

现在,当我使用“ruby​​脚本/服务器”启动网络服务器时,出现错误:

“该程序无法启动,因为您的计算机缺少msvcrt-ruby18.dll。”

然后,webrick启动并正常运行。

我猜测使用Rails 1.9会出现问题,而mongrel希望使用1.8? (我是Rails的新手,没有真正的理由让我使用Mongrel。

最佳答案

使用Ruby 1.9时,需要使用Mongrel 1.2.0.pre2。如果要升级到Ruby 1.9,则还应该升级到Ruby 1.9.2,因为Rails的Ruby 1.9.1存在问题。

要在没有 bundle 程序的情况下安装:

gem install mongrel --pre

在您的gemfile中:
gem 'mongrel', '1.2.0.pre2'

09-20 02:29