Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我完全完成了在 ubuntu 服务器上的 redmine 安装。我正在使用以下命令测试服务器:
ruby script/server webrick -e production
但是当我按 ctrl+z 时它会停止。所以我想在 Ubuntu 中将它作为服务或进程启动。
我用这个试过这个:
ruby script/server webrick -e production -du
它显示进程正在运行,但在浏览器中没有显示页面。
你有什么建议我可以解决这个问题吗?
以下命令在我的系统上运行良好:
./script/server webrick -e development -d
当我关闭我的外壳时,服务器并没有停止。