Supervisorctl学习

1.Supervisorctl

supervisorctl 是一个进程托管工具,好比一组灯泡开关,负责操作灯泡的点亮、关闭。


supervisorctl ----- 前台运行
supervisorctl status xxxx ----- 查询xxxx的进程状态
supervisorctl start xxx ----- 启动xxx进程
supervisorctl stop xxx ----- 停止xxx进程
supervisorctl restart xxx ----- 重启xxx进程


上面说了supervisorctl是一个托管工具,所以我们即使把进程A交给了supervisorctl托管,我们也是可以自己手动启动\停止进程的

找到进程启动指令:

	ps -efww | grep xxx
	# ww是为了让结果显示完全
	root     11859  2698  0 618 ?       00:17:29 /opt/release/xc-app/app -cf /opt/release/xc-app/app/service.conf -log_dir=/opt/release/xc-app/app/logs -logger.out=file -host=true
	#最后一串就是此进程的启动指令

将服务停掉,ps将查不到此进程:
supervisorctl stop xxx

使用上面得到启动指令启动进程
      1.使用ps查看进程状态
      2.使用supervisorctl status查看进程状态
结果:可以发现ps能够查到进程但supervisorctl status显示进程依然是STOP状态,这是因为supervisorctl监控不到人为对进程的操作,但是这个时候我们还是能够正常使用此进程功能的。

你可能感兴趣的:(理论知识,实践,linux)