1

Ubuntu 13.04サーバーでHHVM別名Hiphop PHPのアップスタートをセットアップしようとしているため、起動時に起動し、予期せず終了すると再生成されます。

スクリプトは次の場所にあります。

/etc/init/hhvm.conf

これは私がこれまでに得たものです:

# Upstart HHVM script
# This script will start/stop HHVM webserver

description "Start and stop the HHVM webserver (Hiphop-PHP)"
version "0.1"
author "RouteXL.com"

# Set the executable and the settings files
env RUN=/usr/share/hhvm/hiphop-php/hphp/hhvm/hhvm
env CONFIG=/etc/hhvm.hdf

# Run at startup when ready
start on (local-filesystems and net-device-up IFACE!=lo)

# Stop the webserver when server closes down
stop on runlevel [016]

# Respawn th webserver when unexpectedly stopped
respawn

# Expect the process to fork
expect fork
expect daemon

# The command to execute to start it up
exec $RUN -m server -c $CONFIG

入力しても何も起こりません:

sudo start hhvm

どうしたの?

4

1 に答える 1

1

Ubuntu 12.04。私はこれを sshd.conf の後にモデル化しましたが、うまくいくようです。-m server を使用しているため、execから返されないためだと思われます。-m デーモンを使用します。YMMV

# hhvm - HipHop VM
#
# The HipHopVM server provides a high performance PHP stack and web server.

description     "HHVM server"
author "Yermo Lamers http://twitter.com/yermolamers"

start on filesystem or runlevel [2345]
stop on runlevel [!2345]

respawn
respawn limit 10 5
umask 022

# Location of config and executable

env SERVER=/usr/local/bin/hhvm
env CONFIG_FILE=/usr/local/etc/hhvm.hdf
env RUN_AS=www-data

exec $SERVER -m daemon --config $CONFIG_FILE --user $RUN_AS
于 2013-12-01T23:08:18.110 に答える