我在ubuntu服务器上完成了我的redmine安装.我正在使用以下命令测试服务器:
ruby script/server webrick -e production
但是当我按下ctrl z它停止.所以我想在Ubuntu中将这个作为服务或进程启动.
我试过这个:
ruby script/server webrick -e production -du
它显示进程正在运行,但在浏览器中没有显示任何页面.
你有什么建议我怎么解决这个问题?
最佳答案 以下命令在我的系统上运行良好:
./script/server webrick -e development -d
关闭shell时服务器没有停止.