我在Play App 中使用了以下启动脚本(在 CentOS 上), 似乎效果不错, 它把它放在背景中, 在自己的进程组和会话中, 这样它就不会被挂起。 有关 < code> play stage code > 和 < code> target/ start code > 的提示来自< 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
)中被孤立。