Can FastCGI show the full path to a process (script)

tui

Well-Known Member
Jun 15, 2007
148
40
78
Mexico
cPanel Access Level
Root Administrator
Normally, when the server goes high loaded we execute something similiar to:

Code:
top -c
or


Code:
ps aux
etc...

A PHP script that causes high load in suPHP mode will show something similiar to this:

user /usr/bin/php /home/user/public_html/spam.php

when we execute some of the above commands.

However, in FastCGI mode it will show something like:

user /usr/bin/php

My question is:

Is there any way for FastCGI to be configured to show the full path like SuPHP does?
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,261
463
Hello :)

I don't believe FCGI will operate the same way as suPHP when viewing the process. You should be able to review the Apache access log or error log, and review the files within the reported account to determine where the usage is coming from.

Thank you.