CentOS - upstartスクリプトが作成されましたが、まったく実行されません。

CentOS - upstartスクリプトが作成されましたが、まったく実行されません。

次の設定がありますが、CentOS 6x(3.10.23-xxxx-std-ipv6-64#1 SMP Tue Mar 18 14:48:24 CET 2014 x86_64 x86_64 x86_64 GNU / Linux)では機能しません。

ステップ1: vi /etc/init/a.conf

description "a.js"
author "YumYumYum"

# Stanzas
#
# Stanzas control when and how a process is started and stopped
# See a list of stanzas here: http://upstart.ubuntu.com/wiki/Stanzas#respawn

# When to start the service
start on runlevel [2345]

# When to stop the service
stop on runlevel [016]

# Automatically restart process if crashed
respawn

script
  echo $$ > /var/run/a.pid;
  exec node /var/tmp/signal/a.js
end script

post-stop script
  rm -f /var/run/a.pid
end script

ステップ2:

$ service a start
a: unrecognized service

どのように実行できるか教えてください。

ベストアンサー1

これは新サービスのようです。次のコマンドを使用して実行できます。

initctl start a

おすすめ記事