如果以这种方式创建 Linux 服务,我如何才能看到我的进程的标准输出?

如果以这种方式创建 Linux 服务,我如何才能看到我的进程的标准输出?

我编写了一个长时间运行的程序。为了确保它在我的服务器上运行,我遵循了本网站的说明用于创建服务。具体来说,“Debian 和 Ubuntu (sysvinit)”方法使用其示例文件/etc/init.d/

示例文件包含以下内容(我更新了顶部的变量以匹配我的场景):

#!/bin/sh

### BEGIN INIT INFO
# Provides:          exampledaemon
# Required-Start:    $local_fs $network $syslog
# Required-Stop:     $local_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Example
# Description:       Example start-stop-daemon - Debian
### END INIT INFO

NAME="my-service"
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
APPDIR="/home/svc-user"
APPBIN="/home/svc-user/my-binary"
APPARGS=""
USER="svc-user"
GROUP="svc-user"

# Include functions 
set -e
. /lib/lsb/init-functions

start() {
  printf "Starting '$NAME'... "
  start-stop-daemon --start --chuid "$USER:$GROUP" --background --make-pidfile --pidfile /var/run/$NAME.pid --chdir "$APPDIR" --exec "$APPBIN" -- $APPARGS || true
  printf "done\n"
}

#We need this function to ensure the whole process tree will be killed
killtree() {
    local _pid=$1
    local _sig=${2-TERM}
    for _child in $(ps -o pid --no-headers --ppid ${_pid}); do
        killtree ${_child} ${_sig}
    done
    kill -${_sig} ${_pid}
}

stop() {
  printf "Stopping '$NAME'... "
  [ -z `cat /var/run/$NAME.pid 2>/dev/null` ] || \
  while test -d /proc/$(cat /var/run/$NAME.pid); do
    killtree $(cat /var/run/$NAME.pid) 15
    sleep 0.5
  done 
  [ -z `cat /var/run/$NAME.pid 2>/dev/null` ] || rm /var/run/$NAME.pid
  printf "done\n"
}

status() {
  status_of_proc -p /var/run/$NAME.pid "" $NAME && exit 0 || exit $?
}

case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    ;;
  status)
    status
    ;;
  *)
    echo "Usage: $NAME {start|stop|restart|status}" >&2
    exit 1
    ;;
esac

exit 0

我按照网站上的其余步骤操作,并让服务运行。top显示它正在运行并使用预期的资源量。运行时,service my-service status我看到了下载的脚本产生的输出,但没有看到二进制文件的任何内容。我是管理 Linux 服务器的新手,所以我不熟悉这里到底发生了什么。的手册页start-stop-daemon没有提到任何有关日志的信息。

我可以(并且可能会)更新我的服务以将日志写入文件而不是标准输出,但我不想错过这个学习机会。

我的服务的标准输出会发生什么情况?如果可以,我该如何访问它?

相关内容