一个Upstart配置文件引发的血案

本篇文章是许久前的一遍文章,贴出来分享下让同样困惑的人少走些弯路。这是之前做的一个小项目,需要将Python程序做成系统服务,可以开机自启动和异常自启动,查了下资料,发现Linux系统自带的upstart可以帮助实现类似功能。于是乎趟坑之旅开始了
先写了一个测试程序"upstarttest.py"

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Authur: Geekpy
Create Date: 2017.3.22
File: upstarttest.py
"""
from time import sleep
import sys


while 1:
    print "running..."
    print "python version: %s" % sys.version
    sleep(60)

然后从网上查了些资料,攒了一个upstart conf文件,如下

description "upstarttest service"
author      "Geekpy"

# auto start after boot system or stop when shutdown
start on runlevel [2345]
stop on runlevel [06]

# auto restart when service is closed
respawn
respawn limit 25 100

# actions before service start
pre-start script
  DAEMONUSER=${DAEMONUSER:-eric}
  if [ ! -d /var/log/upstarttest ]; then
    mkdir -p /var/log/upstarttest && chown eric:eric /var/log/upstarttest
  fi
  touch /var/run/upstarttest.pid
  chown $DAEMONUSER /var/run/upstarttest.pid
  pyenv shell 2.7.11
end script

script
  CMD="python /data/code/testcode/upstarttest/upstarttest.py"
  DAEMONUSER=${DAEMONUSER:-eric}
  exec start-stop-daemon --start \
    --chuid $DAEMONUSER \
    --pidfile /var/run/upstarttest.pid \
    --make-pidfile \
    --exec $CMD
end script

将这个upstarttest.conf放到/etc/init/下,然后执行start upstarttest

结果发现报错,如下:

start: Unknown job: upstarttest

Google一下,主要是说语法错误,好吧,用工具init-checkconf检查语法

init-checkconf /etc/init/upstarttest.conf

结果刚开始的确有语法错误:主要是最开始用tab缩进,改为两个空格的缩进,语法错误消失,这里发现conf文件中script中的语法严格遵循shell语法,script之外的不是shell语法,总之不能有任何语法错误,还一个容易犯的错误是忘记加"end script"

总之解决完语法错误,再次执行,发现问题依旧。这是咋回事?

有人说需要重新reload config文件,于是乎执行

initctl reload-configuration

然后再次执行start命令,问题依旧,~~~~

还使用了service start upstarttest命令尝试也是报错,这个东西的问题是报了错仍然不知道是哪里的错误,仔细看了stackoverflow上人家是怎么封装python程序发现都很简单,那么一定是我的程序哪里出现了错误,首先发现有人说python后边的程序path应该作为参数传递,因此改为下面这样

script
  CMD=/home/eric/.pyenv/shims/python
  ARGS=/data/code/testcode/upstarttest/upstarttest.py
  DAEMONUSER=${DAEMONUSER:-eric}
  exec start-stop-daemon --start \
    --chuid $DAEMONUSER \
    --pidfile /var/run/upstarttest.pid \
    --make-pidfile \
    --exec $CMD -- $ARGS
end script

而且要用sudo执行start,于是乎这样执行

sudo start upstarttest

发现还是有问题,想来主要的区别就是在pre-start script中加了pyenv的设置
果断注释掉,再次尝试,这次终于成功了。原来pyenv不能像在shell中那样执行,于是搜索后发现应该这样执行,如下:

description "upstart test"
author "Geekpy"

# auto start after boot system or stop when shutdown
start on runlevel [2345]
stop on runlevel [06]

# auto restart when service is closed
respawn
respawn limit 25 100

# set pyenv environment variables
env PYENV_ROOT=/home/eric/.pyenv
env PATH=/home/eric/.pyenv/bin:/sbin:/usr/sbin:/bin:/usr/bin
env PYENV_VERSION=2.7.9

# actions before service start
pre-start script
  DAEMONUSER=${DAEMONUSER:-eric}
  if [ ! -d /var/log/upstarttest ]; then
    mkdir -p /var/log/upstarttest && chown eric:eric /var/log/upstarttest
  fi
  touch /var/run/upstarttest.pid
  chown $DAEMONUSER /var/run/upstarttest.pid
end script

script
  eval "$(pyenv init -)"
  CMD=/home/eric/.pyenv/shims/python
  ARGS=/data/code/testcode/upstarttest/upstarttest.py
  DAEMONUSER=${DAEMONUSER:-eric}
  exec start-stop-daemon --start \
    --chuid $DAEMONUSER \
    --pidfile /var/run/upstarttest.pid \
    --make-pidfile \
    --exec $CMD -- $ARGS
end script

注意这里通过设置pyenv的环境变量,来设置pyenv的环境,而不是直接执行pyenv

另外在调试的过程中会发现可以通过查看log文件来确定问题

sudo tail -f /var/log/upstart/upstarttest.log

这个是默认的stdout和stderr打印的文件

最后在Ubuntu调试完成后,放到Server上发现还是不行,WTF!!!
最后经过输出打印信息,发现是由于CentOS上没有start-stop-daemon脚本,因此需要安装,安装请参考这里

另外在CentOS上upstart日志在/var/log/messages当中

Reference:

  • https://lincolnloop.com/blog/joy-upstart/
  • http://blog.fens.me/linux-upstart/
  • http://blog.chedushi.com/archives/10655
  • http://www.malike.net.cn/blog/2016/05/21/pyenv-tutorial/
  • http://blog.creke.net/776.html
  • http://upstart.ubuntu.com/cookbook/

你可能感兴趣的:(一个Upstart配置文件引发的血案)