开发者

Redmine: want to run webrick service as background process

开发者 https://www.devze.com 2023-02-05 23:48 出处:网络
I am completely done with my redmine installation in ubuntu server. I am testing the server using the following command:

I am completely done with my redmine installation in ubuntu server. I am testing the server using the following command:

ruby script/server webrick -e production

But when I press ctrl+z it stops. So I want to start this one as a service or process in Ubuntu.

I tried this with this one:

ruby script/server webrick -e production -du 
开发者_如何学Python

It shows the process is running but in the browser no page is shown.

Do you have any suggestion how I can resolved the problem??


The following command works well on my system :

./script/server webrick -e development -d

The server is not stopped when I close my shell.

0

精彩评论

暂无评论...
验证码 换一张
取 消