English 中文(简体)
Scala 启动 Play 服务器正在制作中
原标题:Scala start Play server in production

我在 EC2 上安装了一个 Play 2. 0 应用程序, 我用 < code> play start 启动应用程序, 它在背景中运行, 我可以点击 < code> Ctrl- D < /code >, 程序将继续在背景中运行, 但会在一段时间( 15 或 20 分钟) 后死亡, 不知道原因 。 我通常在程序启动后退出 ssh 会话, 我希望这不是原因 。

最佳回答

nohup play start 为我工作。

问题回答

我在Play App 中使用了以下启动脚本(在 CentOS 上), 似乎效果不错, 它把它放在背景中, 在自己的进程组和会话中, 这样它就不会被挂起。 有关 < code> play stage 和 < code> target/ start 的提示来自< a href=> https://groups.google.com/forum/? from groups@! potic/play- framework/ BlV4c3q8hxE" rel=“ no follow” >Guillaume Bort , 是“ 正确的方式”。

#!/bin/bash
#
# chkconfig: 2345 98 1
# description: MyApp application
#

case "$1" in
start)
  su - apps << EOF 
cd /opt/myapp || exit 1
PATH=/opt/play-2.1.1:$PATH
echo "Starting MyApp..."
play stage 
setsid target/start < /dev/null > /dev/null 2>&1 & 
EOF
  ;;
stop)
  su - apps << EOF 
cd /opt/myapp || exit 1
PATH=/opt/play-2.1.1:$PATH
echo "Stopping MyApp..."
play stop
EOF
  ;;
esac

您可通过下列方式验证它与世隔绝:

ps -e -o user,pid,ppid,pgrp,sid,command | grep -i play

你会看到一些东西,比如:

apps      2949     1  2949  2949 java -cp target/staged/* play.core.server.NettyServer target/..

意思是 init (pid 1 )是母体,在自己的处理组( >2949 )中被孤立。

我建议您使用激活器( 原播放器) 脚本的阶段命令来准备项目部署二进制。 您可以在背景中运行二进制, 可以在下面代码中第二个命令所显示的路径中找到 。

./activator stage
target/universal/stage/bin/project-name &

玩2.2.3... 玩"开始 - Dhttp.port=8080"为我工作!





相关问题
How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...

To use or not to use Scala for new Java projects? [closed]

I m impressed with Twitter and investigating to use Scala for a new large scale web project with Hibernate and Wicket. What do you think about Scala, and should I use it instead of Java? EDIT: And, ...

Why does Scala create a ~/tmp directory when I run a script?

When I execute a Scala script from the command line, a directory named "tmp" is created in my home directory. It is always empty, so I simply deleted it without any apparent problem. Of course, when I ...

Include jar file in Scala interpreter

Is it possible to include a jar file run running the Scala interpreter? My code is working when I compile from scalac: scalac script.scala -classpath *.jar But I would like to be able to include a ...

Scala and tail recursion

There are various answers on Stack Overflow which explain the conditions under which tail recursion is possible in Scala. I understand the limitations and how and where I can take advantage of tail ...

热门标签