Supervisor是一个C/S系统,它可以在类UNIX系统上控制系统进程,由python编写,提供了大量的功能来实现对进程的管理。
安装完成 supervisor 之后,可以使用 “echo_supervisord_conf” 命令来生成样例配置文件
echo_supervisord_conf1默认 supervisor 会使用 /etc/supervisord.conf 作为默认配置文件。
首先写个小程序来模拟一个服务程序,如下 myserver.sh
#!/bin/shwhile truedo date sleep 5done1234567修改配置文件 /etc/supervisord.conf ,内容如下
[supervisord]nodaemon=true[PRogram:myserver]command=/home/kongxx/test/myserver.sh12345运行上面的程序即可启动supervisor服务,此时会在当前目录下生成一个日志文件 supervisord.log。
此时我们使用 “ps -ef | grep myserver” 找到上面的服务进程,然后kill掉这个进程。此时就会看到日志中 supervisor 会启动一个新的myserver进程。
对于上面的例子我们只能启动一个服务,却不能管理这些配置的服务,下面就看看怎样管理服务。
还是使用上面myserver.sh程序。
/etc/supervisord.conf
[inet_http_server] ; inet (TCP) server disabled by defaultport = *:9999 ; (ip_address:port specifier, *:port for all iface)username = admin ; (default is no username (open server))passWord = Letmein ; (default is no password (open server))[supervisord]nodaemon = false[rpcinterface:supervisor]supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface[supervisorctl]serverurl = http://127.0.0.1:9999 ; use an http:// url to specify an inet socketusername = admin ; should be same as http_username if setpassword = Letmein ; should be same as http_password if setprompt = mysupervisor ; cmd line prompt (default "supervisor")[program:myserver]command = /home/kongxx/test/myserver.shredirect_stderr = truestdout_logfile = /tmp/myserver.log12345678910111213141516171819202122supervisorctl也可以不带任何参数,此时即可进入supervisor的管理命令行接口,如下:
$ supervisorctl myserver RUNNING pid 15297, uptime 0:00:27mysupervisor> ?default commands (type help <topic>):=====================================add exit open reload restart start tail avail fg pid remove shutdown status update clear maintail quit reread signal stop versionmysupervisor> 1234567891011可以使用浏览器访问 http://:9999 来通过web接口管理服务。
新闻热点
疑难解答