CentOS - o script upstart é criado, mas nunca é executado

1

Eu tenho esta configuração a seguir, mas não está funcionando no meu CentOS 6x (3.10.23-xxxx-std-ipv6-64 # 1 SMP ter 18 de março 14:48:24 CET 2014 x86_64 x86_64 x86_64 GNU / Linux)

Etapa 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

Etapa 2:

$ service a start
a: unrecognized service

Como posso executá-lo, por favor?

    
por YumYumYum 04.11.2014 / 02:17

1 resposta

-1

Parece um serviço iniciante. Você pode executá-lo usando:

initctl start a
    
por 12.06.2018 / 13:21