要使用 Linux 的 Supervisorctl 查看状态,请按照以下步骤操作:
打开终端(Terminal)。
输入以下命令以查看所有已配置的 Supervisor 进程及其状态:
supervisorctl status
这将显示类似于以下内容的输出:
supervisord: master process /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
进程 group1:
进程进程1: started with pid 12345
进程进程2: started with pid 12346
进程 group2:
进程进程3: started with pid 12347
在这个例子中,supervisord
是主进程,而 进程进程1
、进程进程2
和 进程进程3
是子进程。状态栏中的 started
表示进程正在运行,而 stopped
表示进程已停止。
supervisorctl status 进程名
例如,要查看名为 进程进程1
的状态,可以输入:
supervisorctl status 进程进程1
这将显示有关该特定进程的详细信息,包括其状态、启动时间等。