33

我是 rails world 的新手,需要在守护进程模式下运行我的 rails 测试服务器。

我注意到有 aa -d 标志,但它对我不起作用..

rails -s -d 

不应该是这样吗?

4

2 回答 2

88

它应该是:

rails server --daemon

# to kill the server
kill `cat tmp/pids/server.pid`

# to tail development logs for debugging
tail -f log/development.log
于 2013-02-19T17:46:59.387 回答
26

值得尝试以下命令

$ rails s -d
于 2013-02-19T17:45:33.770 回答