为什么mongrel不会在Rails 3.2.rc中启动?

时间:2022-03-05 20:39:17

GEMFILE that starts mongrel

开始杂种的GEMFILE

gem 'rails', '3.1.0'
gem 'mongrel', '>=1.2.0.pre2'

GEMFILE that start WEBrick (not mongrel)

启动WEBrick的GEMFILE(不是mongrel)

gem 'rails', '3.2.0.rc2'
gem 'mongrel', '>=1.2.0.pre2'

1 个解决方案

#1


20  

Starting on Rails 3.2 you must specify the server you want to use, otherwise Webrick will be used.

从Rails 3.2开始,您必须指定要使用的服务器,否则将使用Webrick。

So, to use mongrel, you must place the gem at your Gemfile AND start the server like this:

因此,要使用mongrel,您必须将gem放在Gemfile上并启动服务器,如下所示:

$ rails s mongrel

#1


20  

Starting on Rails 3.2 you must specify the server you want to use, otherwise Webrick will be used.

从Rails 3.2开始,您必须指定要使用的服务器,否则将使用Webrick。

So, to use mongrel, you must place the gem at your Gemfile AND start the server like this:

因此,要使用mongrel,您必须将gem放在Gemfile上并启动服务器,如下所示:

$ rails s mongrel