daemontools 工具

supervisord

  • 注意:Supervisor 能管理非 daemon 的进程,也就是说 Supervisor 不能管理守护进程。否则提示 Exited too quickly (process log may have details) 异常。
  • 官网:http://supervisord.org/installing.html
  • 安装过程:
    • 解释:easy_install 是 setuptools 包里带的一个命令,使用 easy_install 实际上是在调用 setuptools 来完成安装模块的工作,所以安装 setuptools 即可。
    • 安装:
      • yum -y install python-setuptools
      • easy_install supervisor
    • 生成配置文件:
      • echo_supervisord_conf > /etc/supervisord.conf
    • 创建专门的程序配置文件目录、日志目录:
      • mkdir -p /var/log/supervisor
      • mkdir -p /etc/supervisor/conf.d/
      • echo -e "[include]\nfiles = /etc/supervisor/conf.d/*.conf">>/etc/supervisord.conf
  • 安装完成的内容介绍:supervisor 安装完成后会生成三个执行程序:
    • supervisortd:supervisor 的守护进程服务(用于接收进程管理命令)
    • supervisorctl:客户端(用于和守护进程通信,发送管理进程的指令)
    • echo_supervisord_conf:生成初始配置文件程序。
  • 程序位置:/usr/bin/supervisord
  • 配置文件位置:/etc/supervisord.conf

Logstash 进程进行守护

  • 默认安装完 Supervisor 是已经启动的,所以在加入新配置之前,需要先停止程序:ps -ef | grep supervisord,kill 对应的 pid
  • 创建配置文件:vim /etc/supervisor/conf.d/logstash.conf
  1. [program:gitnavi-logstash]
  2. command=/usr/program/elk/logstash-2.4.1/bin/logstash -f /usr/program/elk/logstash-2.4.1/config/logstash.conf
  3. stdout_logfile=/var/log/supervisor/supervisord-logstash.log
  4. stderr_logfile=/var/log/supervisor/supervisord-logstash-err.log
  5. user=root
  6. autostart=true
  7. autorestart=true
  8. startsecs=5
  9. priority=1
  10. stopasgroup=true
  11. killasgroup=true
  • 启动程序(默认会启动所有子任务):/usr/bin/supervisord -c /etc/supervisord.conf
  • 管理子任务的命令:
    • 启动所有子任务:/usr/bin/supervisorctl start all
    • 结束所有子任务:/usr/bin/supervisorctl stop all
    • 只载入最新的配置文件, 并不重启任何进程:/usr/bin/supervisorctl reread
    • 载入最新的配置文件,停止原来的所有进程并按新的配置启动管理所有进程:/usr/bin/supervisorctl reload
    • 根据最新的配置文件,启动新配置或有改动的进程,配置没有改动的进程不会受影响而重启:/usr/bin/supervisorctl update
    • 查看所有子任务状态,如果没有运行的子任务则是没有任何反馈信息:/usr/bin/supervisorctl status
  • 管理所有子任务也可以用交互方式,输入命令:supervisorctl,会进入 supervisord 的交互模式下,如果当前有启动的任务,还可以看到对应的任务情况。
    • 在该交互下可以停止指定名称的子任务,比如 logstash 任务:stop gitnavi-logstash
    • 也可以停止所有子任务:stop all
    • 也可以启动所有子任务:start all
    • 更多命令可以输入:help

设置 supervisord 开启自启动

CentOS 6

  • 创建文件:vim /etc/init.d/supervisord
  1. #!/bin/sh
  2. #
  3. # Supervisor is a client/server system that
  4. # allows its users to monitor and control a
  5. # number of processes on UNIX-like operating
  6. # systems.
  7. #
  8. # chkconfig: - 64 36
  9. # description: Supervisor Server
  10. # processname: supervisord
  11. # Source init functions
  12. . /etc/init.d/functions
  13. RETVAL=0
  14. prog="supervisord"
  15. pidfile="/tmp/supervisord.pid"
  16. lockfile="/var/lock/subsys/supervisord"
  17. start()
  18. {
  19. echo -n $"Starting $prog: "
  20. daemon --pidfile $pidfile supervisord -c /etc/supervisord.conf
  21. RETVAL=$?
  22. echo
  23. [ $RETVAL -eq 0 ] && touch ${lockfile}
  24. }
  25. stop()
  26. {
  27. echo -n $"Shutting down $prog: "
  28. killproc -p ${pidfile} /usr/bin/supervisord
  29. RETVAL=$?
  30. echo
  31. if [ $RETVAL -eq 0 ] ; then
  32. rm -f ${lockfile} ${pidfile}
  33. fi
  34. }
  35. case "$1" in
  36. start)
  37. start ;;
  38. stop) stop ;;
  39. status)
  40. status $prog ;;
  41. restart)
  42. stop
  43. start ;;
  44. *)
  45. echo "Usage: $0 {start|stop|restart|status}" ;;
  46. esac
  • chmod 755 /etc/init.d/supervisord
  • chkconfig supervisord on
  • 以后启动可以用:service supervisord start
  • 以后停止可以用:service supervisord stop

CentOS 7

  • 创建文件:vim /lib/systemd/system/supervisor.service
  1. [Unit]
  2. Description=supervisor
  3. After=network.target
  4. [Service]
  5. Type=forking
  6. ExecStart=/usr/bin/supervisord -c /etc/supervisord.conf
  7. ExecStop=/usr/bin/supervisorctl $OPTIONS shutdown
  8. ExecReload=/usr/bin/supervisorctl $OPTIONS reload
  9. KillMode=process
  10. Restart=on-failure
  11. RestartSec=42s
  12. [Install]
  13. WantedBy=multi-user.target
  • chmod 766 /lib/systemd/system/supervisor.service
  • systemctl enable supervisor.service
  • systemctl daemon-reload

资料