作者giive (lala)
看板Ruby
标题[心得] Mongrel 三部曲: Mongrel 使用方式
时间Thu Oct 5 17:28:46 2006
出自我的 Blog
http://lightyror.blogspot.com/2006/10/mongrel.html
Ruby on Rails 架设一直有一个问题
找不到适当的 Application Server
Webricks 太慢,fastcgi 太玄妙,scgi 太年轻
这个时候
只有 Mongrel 可以拯救世界呀~~~~
Mongrel 首页是这样写的
Mongrel is a fast HTTP library and server for Ruby that is intended for hosting Ruby web applications of any kind using plain HTTP rather than FastCGI or SCGI. It is framework agnostic and already supports Ruby On Rails, Og+Nitro, and Camping frameworks.
他跟Webricks 一样,是一个方便我们架设 Ruby on Rails 环境的网页伺服器
并且他比 Webricks 还要来得快速
安装方式很简单
gem i mongrel
使用方式呢,基本上跟 Webrick 差不多
到 Rails 根目录
打入
mongrel_rails start
你就会发现他已经可以使用了
如果要用 deamon 模式来使用的话
打入
mongrel_rails start -d
即可
如果要使用特定的 port
mongrel_rails start -p 1234
即可
用不同环境启动
mongrel_rails start -e production/development/test
即可
指定log file
mongrel_rails start -l log/mongrel_log
即可
有启动的问题
mongrel_rails start -h
即可
重起 Mongrel
mongrel_rails restart
停止 Mongrel
mongrel_rails stop
--
lighty RoR 是一个介绍 lighttpd , SQLite , Ruby and Rails 的 Blog
http://lightyror.blogspot.com/
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.218.90.242