Permission issue / trouble debugging

ffeingol

Well-Known Member
#1
We're seeing the following error in our error_log:

2008-08-24 12:21:08.098 [INFO] Permission denied, let parent kill it: 6979
The server is running suexec and it's running the latest LSWS. The problem is we can't figure out what file it's getting a permission denied on. We're run with full debugging on (just toggled debugging more) nad the log is not giving us any clues.

Any thoughts from anyone?

TIA,

Frank
 

ffeingol

Well-Known Member
#2
I'm also seeing this message:

2008-08-24 14:33:01.029 [INFO] [##.##.##.##:62376-0#APVH_##.##.##.##_aaa.bbb.com] No request delivery notification has been received from LSAPI process:15842, possible run away process.
A) The server is setup to run php suexec
B) The cgi time out is set to 120 seconds (soft timeout).

This process, however, dies after about 50 - 60 seconds. It is a long running process as it's gathering stats from several different servers over https.
 

ffeingol

Well-Known Member
#3
I figured it out by stracing the PHP process. The process was trying to connect to a server that no longer existed and was timing out on that connection. The PHP code bailed if it could not connect.
 

mistwang

LiteSpeed Staff
#4
We're seeing the following error in our error_log:



The server is running suexec and it's running the latest LSWS. The problem is we can't figure out what file it's getting a permission denied on. We're run with full debugging on (just toggled debugging more) nad the log is not giving us any clues.
That's normal, the lshttpd process start suexec PHP process does not have right to kill the process any more. so killing that PHP process will be handed to the parent lshttpd process running as root.
 
Top