有mod_wsgi
一个参数可以WSGIDaemonProcess
设置display-name
。例如我可以有:
WSGIDaemonProcess myApp processes=4 threads=1 maximum-requests=1000 display-name=%{GROUP}
WSGIProcessGroup myApp
当我使用查看每个进程的内存使用情况时ps -C apache2 xo pid,ppid,rss,cmd,comm --sort -rss
,mod_wsgi
会对进程执行一些操作以更改显示的名称,cmd
因此我得到了(wsgi:myApp)
apache 参数而不是 apache 可执行文件的路径。
我该如何对 Apache 的其他子进程执行此操作?作为这个问题的附加部分,可能是第一个问题的先决条件,我可以将我的虚拟主机隔离到特定的子进程吗?