O script de inicialização deixa milhares de processos extintos

3

Meu problema é que eu tenho um script de init que está gerando milhares de processos bash extintos. Meu objetivo é ter um programa chamado "fr24feed" em sua própria sessão de tela na inicialização. Depois de ver exemplos na Web, escrevi este script de inicialização.

PROG="fr24feed"
PROG_PATH="/home/pi/fr24feed"
PROG_ARGS="--fr24key=xxxxxx --bs-ip=127.0.0.1 --bs-port=30003"
PIDFILE="/var/run/fr24feed.pid"

start() {
  if [ -e $PIDFILE ]; then
      ## Program is running, exit with error.
      echo "Error! $PROG is currently running!" 1>&2
      echo "Already running"
      exit 1
  else
      echo "Starting"
      cd $PROG_PATH
      sleep 2
      sudo -u pi screen -S fr24feed -d -m ./$PROG $PROG_ARGS 2>&1 > /dev/null &
      echo "$PROG started"
      touch $PIDFILE
  fi
}

stop() {
  if [ -e $PIDFILE ]; then
      ## Program is running, so stop it
     echo "$PROG is running"
     killall $PROG
     rm -f $PIDFILE
     echo "$PROG stopped"
  else
      ## Program is not running, exit with error.
      echo "Error! $PROG not started!" 1>&2
      exit 1
  fi
 }

## Check to see if we are running as root first.
## Found at http://www.cyberciti.biz/tips/shell-root-user-check-script.html
if [ "$(id -u)" != "0" ]; then
  echo "This script must be run as root" 1>&2
  echo "This script must be run as root" 1>&2 >> /home/pi/fr24feed.log
  exit 1
fi

case "$1" in
  start)
      start
      exit 0
  ;;
  stop)
      stop
      exit 0
  ;;
  reload|restart|force-reload)
      stop
      start
      exit 0
  ;;
  **)
      echo "Usage: $0 {start|stop|reload}" 1>&2
      exit 1
  ;;
esac
exit 0

Usando ps -ax eu vejo

2063 ?        Ss     0:19 SCREEN -S fr24feed -d -m ./fr24feed --fr24key=xxxxxx --bs-ip=127.0.0.1 --bs-port=30003
2064 pts/4    Ssl+  49:19 ./fr24feed --fr24key=xxxxxx --bs-ip=127.0.0.1 --bs-port=30003

Seguido mais tarde por milhares de entradas como

3073 pts/4    Z+     0:00 [bash] <defunct>
3078 pts/4    Z+     0:00 [bash] <defunct>
3083 pts/4    Z+     0:00 [bash] <defunct>
3088 pts/4    Z+     0:00 [bash] <defunct>
3092 pts/4    Z+     0:00 [bash] <defunct>

Já que eles estão todos no pts / 4 eu suspeito que eles estão sendo gerados pelo meu script de inicialização, mas não vejo onde eu errei. Talvez STDERR e STDOUT não estejam sendo redirecionados corretamente para / dev / null?

    
por pgcudahy 02.04.2014 / 06:47

1 resposta

1

Perhaps STDERR and STDOUT are not being correctly redirected to /dev/null?

Correto. O que 2>&1>/dev/null faz é redirecionar 2 para no mesmo local que 1 , que é o terminal controlador (pseudo), e redireciona 1 para /dev/null :

» perl -e 'print "Testing stdout\n"; print STDERR "Testing stderr\n"' 
Testing stdout
Testing stderr

» perl -e 'print "Testing stdout\n"; print STDERR "Testing stderr\n"' 1> /dev/null
Testing stderr

» perl -e 'print "Testing stdout\n"; print STDERR "Testing stderr\n"' 2> /dev/null
Testing stdout

» perl -e 'print "Testing stdout\n"; print STDERR "Testing stderr\n"' 2>&1 > /dev/null
Testing stderr

A maneira simples de fazer isso é usar apenas &> :

» perl -e 'print "Testing stdout\n"; print STDERR "Testing stderr\n"' &> /dev/null
[no output]

Veja o exemplo 3.6 aqui . Note que apesar de dizer que isso redireciona "cada saída", isso se refere ao shell de execução, portanto se o processo executado usar outros descritores de arquivo para log ou redirecionar seu próprio stdout / stderr para nunca atingir o shell, eles não serão afetados.

    
por 02.04.2014 / 10:19