Apache错误,它们是什么意思?

时间:2013-01-17 12:28:57

标签: apache

我在apache日志中收到这些错误消息,但我不知道它们是什么意思。任何想法?

[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to  33554432/33554432 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 2 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 3 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to  176160768/176160768 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 2 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 3 set to  4294967295/4294967295 (soft/hard) bytes`

1 个答案:

答案 0 :(得分:0)

Cannot get media type from 'x-mapp-php5'

你的php设置有问题(如果你收到那条消息,php文件可能无法正常工作)。 x-mapp-php5很可能在你的Apache配置中映射到“.php”,所以当服务器尝试提供php文件时,由于一些配置错误,它正在寻找处理x-mapp-php5而没有找到它的东西

[error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to 33554432/33554432 (soft/hard) bytes

pid,euid和egid是进程ID,用户ID和组ID。 suexec.cpp表示正在尝试将用户标识更改为root(euid = 0)。 setrlimit表示尝试设置系统资源限制。

换句话说,Apache设置中的某些东西正在尝试在系统级别执行它不能/不应该执行的操作。