faltando start-stop-deamon em centos 6.8

1

Estou tentando executar o node_exporter para prometheus on centos 6.8. Aqui está o script init.d que eu consegui criar:

    #!/bin/sh

### BEGIN INIT INFO
# Provides:          Node exporter
# Required-Start:    $local_fs $network $named $time $syslog
# Required-Stop:     $local_fs $network $named $time $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Description:       Node exporter for prometheus written in Go
### END INIT INFO

DAEMON=/home/prometheus/node_exporter-0.14.0.linux-amd64
NAME=node_exporter
USER=prometheus
PIDFILE=/var/run/prometheus/$NAME.pid
LOGFILE=/var/log/prometheus/$NAME.log

ARGS=""
[ -r /etc/default/$NAME ] && . /etc/default/$NAME

do_start_prepare()
{
    mkdir -p 'dirname $PIDFILE' || true
    mkdir -p 'dirname $LOGFILE' || true
    chown -R $USER: 'dirname $LOGFILE'
    chown -R $USER: 'dirname $PIDFILE'
}

do_start_cmd()
{
    do_start_prepare
    echo -n "Starting daemon: "$NAME
    start-stop-daemon --chuid $USER -C --background --start --quiet --pidfile $PIDFILE --make-pidfile --exec $DAEMON -- $ARGS >> $LOGFILE 2>&1
    echo "."
}

do_stop_cmd()
{
    echo -n "Stopping daemon: "$NAME
    start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
    rm $PIDFILE
    echo "."
}

uninstall() {
  echo -n "Are you really sure you want to uninstall this service? That cannot be undone. [yes|No] "
  local SURE
  read SURE
  if [ "$SURE" = "yes" ]; then
    stop
    rm -f "$PIDFILE"
    echo "Notice: log file was not removed: '$LOGFILE'" >&2
    update-rc.d -f <NAME> remove
    rm -fv "$0"
  fi
}

status() {
        printf "%-50s" "Checking $NAME..."
    if [ -f $PIDFILE ]; then
        PID=$(cat $PIDFILE)
            if [ -z "$(ps axf | grep ${PID} | grep -v grep)" ]; then
                printf "%s\n" "The process appears to be dead but pidfile still exists"
            else    
                echo "Running, the PID is $PID"
            fi
    else
        printf "%s\n" "Service not running"
    fi
}


case "$1" in
  start)
    do_start_cmd
    ;;
  stop)
    do_stop_cmd
    ;;
  status)
    status
    ;;
  uninstall)
    uninstall
    ;;
  restart)
    stop
    start
    ;;
  *)
    echo "Usage: $1 {start|stop|status|restart|uninstall}"
    exit 1
esac

exit 0

e aqui está a saída quando eu o executo.

[prometheus@prometheus init.d]$ service node_exporter start
Starting daemon: node_exporter.

mas nada acontece quando eu verifico o status:

[prometheus@prometheus init.d]$ service node_exporter status
Checking node_exporter...                         Service not running

aqui está o log em /var/log/prometheus/node_exporter.log

/etc/init.d/node_exporter: line 35: start-stop-daemon: command not found

aqui está a saída de "which":

[prometheus@prometheus prometheus]$ which start-stop-daemon
/usr/bin/which: no start-stop-daemon in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)

Eu realmente preciso de algumas orientações aqui, já que usei principalmente o CentOS 7 e não estou muito familiarizado com scripts init.d

    
por Mher Harutyunyan 18.04.2017 / 13:25

2 respostas

1

start-stop-daemon é um script específico do Debian que existe somente no Debian e sistemas derivados dele, como o Ubuntu. Você não vai encontrá-lo no CentOS e, na verdade, ele não deve ser usado porque não está lá.

Você pode simplesmente iniciar e interromper o daemon diretamente.

No caso de node_exporter , o projeto envia um script de init para o CentOS 6 que você pode usar diretamente. Você não precisa escrever o seu próprio.

    
por 09.12.2018 / 23:02
0

Para o RHEL 6, instalei daemonize e usei este script:

link

    
por 17.08.2017 / 14:22