Redmine:想要将 webrick 服务作为后台进程运行
我已经完全完成了 ubuntu 服务器中的 redmine 安装。我正在使用以下命令测试服务器:
ruby script/server webrick -e production
但是当我按 ctrl+z 时它会停止。所以我想在 Ubuntu 中将其作为一项服务或进程启动。
我尝试了这个:
ruby script/server webrick -e production -du
它显示进程正在运行,但在浏览器中没有显示页面。
你对我如何解决这个问题有什么建议吗?
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
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??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下命令在我的系统上运行良好:
当我关闭 shell 时,服务器不会停止。
The following command works well on my system :
The server is not stopped when I close my shell.