免费注册 查看新帖 |

Chinaunix

广告
  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 9288 | 回复: 26
打印 上一主题 下一主题

[Web] Apache 一天死一次 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-02-17 11:47 |只看该作者 |倒序浏览
环境:apache2.5+redhat 9+tomcat5+mysql
基本上是静态页面。
编译apache使用了worker
负载:日IP16万左右。
以前日IP10万的时候,基本正常,现在访问量大了,基本上apache一天死一次。
在error_log看到许多以下日志:
[Wed Feb 16 04:08:31 2005] [error] child process 20732 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20734 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20735 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20736 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20737 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20738 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20742 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20743 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 27357 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20747 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20750 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20752 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20753 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20757 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20759 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20760 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 20761 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 27846 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 29221 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 30134 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 30308 still did not exit, sending a SIGKILL
[Wed Feb 16 04:08:31 2005] [error] child process 30419 still did not exit, sending a SIGKILL

付:我的配置:
<IfModule worker.c>;
StartServers 6
MaxClients 5120
ServerLimit 90
MinSpareThreads 100
MaxSpareThreads 400
ThreadLimit 400
ThreadsPerChild 64
MaxRequestsPerChild 0
</IfModule>;
这个问题我头疼了好多天了。希望能给点建议!
先谢了。
在线等。。。

论坛徽章:
0
2 [报告]
发表于 2005-02-17 14:27 |只看该作者

Apache 一天死一次

这么高的访问量我强烈建议用FB做服务器,
我的就没有这样的问题,我的流量比你的还大一些呢?都没有这样的问题,一样的用得很流淌呢?呵呵。

论坛徽章:
0
3 [报告]
发表于 2005-02-17 14:51 |只看该作者

Apache 一天死一次

fb我不会用啊。再说,把linux下的东东搞到fb下,不知道困难么。
主要是tomcat和JSP,mysql不知道这些配置是不是一样的。

论坛徽章:
0
4 [报告]
发表于 2005-02-17 17:24 |只看该作者

Apache 一天死一次

你有几台可以支配的服务器阿?

如果只有一台的话还是免了,好像在freebsd下对java支持不太好!

论坛徽章:
0
5 [报告]
发表于 2005-02-17 22:27 |只看该作者

Apache 一天死一次

重新编译一下apache吧。

MPM使用prefork模式,不要使用worker模式了。

时间长一点或者访问量大一点就会死。

worker指的apache运行在进程与线程的混合模式。
prefork指的apache运行在进程模式。
只要编译的时候使用默认或者--mpm=prefork参数就行了。

OK

论坛徽章:
0
6 [报告]
发表于 2005-02-17 22:32 |只看该作者

Apache 一天死一次

补充一点,这个问题不是apache的问题,主要是linux下对线程安全的支持还不是很完善导致的。

或者你可以试用一下现在新的2.6内核好象对线程安全的支持要完善的多了。
可以试用一下Fedora Core 3

你的日志已经表明了这一点,有很多死线程发送了关闭的中断信号还是没有退出。结果死线程数达到最大值,没有一个正常的线程在运行,从而导致网站无法访问。

论坛徽章:
0
7 [报告]
发表于 2005-02-18 09:51 |只看该作者

Apache 一天死一次

以前IP 10万的时候,apache 的prefork模式我也用过。死得非常快。后来我改用worker模式了,好了大概半个月。
现在流量又上来了。worker模式也顶不住了!
其实,我的页面基本都是静态的了,tomcat基本上只执行搜索的任务。tomcat一天也就处理几万个查询。
另外,我使用的是apache2.0.52
我现在的迷惑是:
1、 是不是我的配置有问题?
2、是不是我的内存不够?我只有1G内存,但是有2个2.4G的CPU。CPU基本空闲。
3、是不是有人在攻击我的服务器?

付:
1、以下是top结果
75 processes: 74 sleeping, 1 running, 0 zombie, 0 stopped
CPU0 states:   0.14% user   0.17% system    0.0% nice   0.0% iowait  98.4% idle
CPU1 states:   0.11% user   0.5% system    0.0% nice   0.0% iowait  99.1% idle
CPU2 states:   1.14% user   0.7% system    0.0% nice   0.0% iowait  97.14% idle
CPU3 states:   1.6% user   0.8% system    0.0% nice   0.0% iowait  98.3% idle
Mem:  1030284k av, 1021560k used,    8724k free,       0k shrd,  318420k buff
                    833804k actv,   48436k in_d,   21808k in_c
Swap: 2040244k av,  176136k used, 1864108k free                  254568k cached

  PID USER     PRI  NI  SIZE  RSS SHARE STAT %CPU %MEM   TIME CPU COMMAND
19635 nobody    15   0 21192  20M  8972 S     1.5  2.0   0:14   2 httpd
21858 nobody    15   0 12228  11M  2996 S     0.7  1.1   0:10   2 httpd
19674 nobody    15   0 19972  19M  7304 S     0.5  1.9   0:15   2 httpd
21789 nobody    15   0 14144  13M  3824 S     0.5  1.3   0:11   2 httpd
19629 nobody    15   0 15212  14M  3836 S     0.3  1.4   0:12   2 httpd
9898 xxx      25   0  276M 213M  1896 S     0.1 21.2   2:46   0 java
这个是在负载特别小的时候的。
2、更详细的apache错误日志;

[Wed Feb 16 17:33:31 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 0 cached endpoints
[Wed Feb 16 17:33:31 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker status:
[Wed Feb 16 17:33:31 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 89
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 63
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 76
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 128
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 139
[Wed Feb 16 17:33:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:33:31 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 6 cached endpoints
[Wed Feb 16 17:33:31 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker lb:lb
[Wed Feb 16 17:33:31 2005] (debug ) [jk_workerEnv.c (127)]  workerEnv.close() done 5
[Wed Feb 16 17:38:50 2005] [warn] child process 3792 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3793 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4017 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4130 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4260 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4693 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 5487 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 9772 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 6663 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 25963 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3618 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19945 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 6805 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19948 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19952 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 29382 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3792 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3793 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4017 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4130 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4260 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 4693 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 5487 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 9772 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 6663 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 25963 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 3618 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19945 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 6805 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19948 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 19952 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:50 2005] [warn] child process 29382 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 3792 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 3793 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 3797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 4017 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 4130 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 4260 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 4693 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 5487 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 9772 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 6663 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 25963 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 3618 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 19797 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 19945 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 6805 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 19948 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 19952 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:52 2005] [warn] child process 29382 still did not exit, sending a SIGTERM
[Wed Feb 16 17:38:56 2005] [error] child process 3792 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 3793 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 3797 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 4017 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 4130 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 4260 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 4693 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 5487 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 9772 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 6663 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 25963 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 3618 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 19797 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 19945 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 6805 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 19948 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 19952 still did not exit, sending a SIGKILL
[Wed Feb 16 17:38:56 2005] [error] child process 29382 still did not exit, sending a SIGKILL
[Wed Feb 16 17:39:10 2005] [notice] caught SIGTERM, shutting down
[Wed Feb 16 17:39:23 2005] [error] shm.create(): error creating shm 2 No such file or directory
[Wed Feb 16 17:39:23 2005] [error] shm.create(): error creating shm /xxx/apache/logs/jk2.shm
[Wed Feb 16 17:39:23 2005] [notice] Apache/2.0.52 (Unix) mod_jk2/2.0.4 configured -- resuming normal operations
[Wed Feb 16 17:39:23 2005] (error ) [jk_logger_file.c (12]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:39:23 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:39:23 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 9438 initialized
[Wed Feb 16 17:43:23 2005] (error ) [jk_worker_ajp13.c (431)]  ajp13.service() error sending, reconnect channel.un:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket -3 32 Broken pipe
[Wed Feb 16 17:43:23 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 71
[Wed Feb 16 17:43:23 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:23 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:23 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:23 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:23 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:23 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:23 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:29 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:29 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:31 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 [Wed Feb 16 17:39:23 2005] (error ) [jk_logger_file.c (12]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:39:23 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:39:23 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 9443 initialized
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (431)]  ajp13.service() error sending, reconnect channel.un:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket -3 32 Broken pipe
[Wed Feb 16 17:43:29 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 115
[Wed Feb 16 17:43:29 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:29 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:29 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:29 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:29 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:29 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:32 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:32 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:32 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16[Wed Feb 16 17:39:33 2005] (error ) [jk_logger_file.c (12]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:39:33 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:39:33 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:39:33 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:39:33 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:39:33 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:39:33 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 9643 initialized
[Wed Feb 16 17:43:26 2005] (error ) [jk_worker_ajp13.c (431)]  ajp13.service() error sending, reconnect channel.un:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket -3 32 Broken pipe
[Wed Feb 16 17:43:26 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 74
[Wed Feb 16 17:43:26 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:26 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:26 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:26 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:26 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:26 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:26 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:36 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:36 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:36 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:36 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:36 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:36 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:36 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:37 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:37 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:37 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16  17:43:32 2005] (error ) [jk_worker_ajp13.c (64]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:32 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:32 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:32 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:32 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:32 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:32 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:32 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:32 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:32 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:32 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:38 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:38 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:41 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:41 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:41 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:41 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:41 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:41 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:41 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:43 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:43 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:43 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.1817:43:31 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:31 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:31 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:38 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:38 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:40 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:40 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:40 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:40 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:40 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:40 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:40 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:46 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:46 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:46 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:46 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:49 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:49 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:49 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/[Wed Feb 16 17:39:23 2005] (error ) [jk_logger_file.c (128)]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:39:23 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:39:23 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:39:23 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:39:23 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 9441 initialized
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (431)]  ajp13.service() error sending, reconnect channel.un:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket -3 32 Broken pipe
[Wed Feb 16 17:43:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 85
[Wed Feb 16 17:43:31 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:31 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:31 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:31 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:31 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:33 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:33 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:33 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:33 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:33 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:33 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:33 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:51 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 /logs/jk2.socket error_state 1
[Wed Feb 16 17:43:43 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:46 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:46 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:46 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:46 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:46 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:49 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:49 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:49 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:49 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:49 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:51 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:51 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:52 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:52 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:53 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:53 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakart17:43:37 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:37 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:37 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:37 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:38 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:38 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:38 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:38 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:43 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:43 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:43 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:43 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:43 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:50 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:50 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:50 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:50 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:50 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:50 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:50 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:59 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:59 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:59 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:49 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:52 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:52 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:52 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:52 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:52 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:52 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:53 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:53 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:53 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:53 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:53 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:53 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:53 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:57 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:57 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:57 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:57 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:57 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:57 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:57 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:59 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta[Wed Feb 16 17:43:33 2005] (error ) [jk_logger_file.c (128)]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:43:33 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:43:33 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:43:33 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:43:33 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:43:33 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:43:33 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 9823 initialized
[Wed Feb 16 17:43:35 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:35 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:35 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:35 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:35 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:35 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:35 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:45 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:45 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:45 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:45 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:45 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:45 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:45 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:00 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:00 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:00 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:00 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:44:00 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:44:00 2005] ( info ) [j17:43:51 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:51 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:43:51 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:51 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:51 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:51 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:01 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:01 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:01 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:01 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:44:01 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:44:01 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:44:01 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:06 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:06 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:06 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:06 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:44:06 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:44:06 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:44:06 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:14 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:14 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:14 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:14 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:44:14 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:44:14 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/[Wed Feb 16 18:36:38 2005] (error ) [jk_logger_file.c (128)]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 18:36:38 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 18:36:38 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 18:36:38 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 18:36:38 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 18:36:38 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 18:36:38 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 11706 initialized
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:localhost:8009
[Wed Feb 16 19:25:58 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 0 cached endpoints
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:localhost:8019
[Wed Feb 16 19:25:58 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 0 cached endpoints
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker status:
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 19:25:58 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 68
[Wed Feb 16 19:25:58 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 1 cached endpoints
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker lb:lb
[Wed Feb 16 19:25:58 2005] (debug ) [jk_workerEnv.c (127)]  workerEnv.close() done 5
[Wed Feb 16 17:49:54 2005] (error ) [jk_logger_file.c (128)]  Can't open log file /xxx/apache/logs/jk2.log
[Wed Feb 16 17:49:54 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8009
[Wed Feb 16 17:49:54 2005] ( info ) [jk_channel_apr_socket.c (215)]  channelApr.resolve(): create AF_NET  localhost 8019
[Wed Feb 16 17:49:54 2005] ( info ) [jk_channel_un.c (135)]  channelUn.init(): init
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (395)]  uriMap.init() Fixing Host www.soudown.com
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri /*.jsp|/servlet/*|/*/servlet/*|/html/play_movie/*|/html/play_mtv/*|/html/play_mp3/* context null host www.soudown.com
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host *
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri null context null host www.soudown.com
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host www.soudown.com
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (484)]  uriMap: fix uri / context / host *
[Wed Feb 16 17:49:54 2005] (debug ) [jk_uriMap.c (711)]  uriMap.init() global for www.soudown.com
[Wed Feb 16 17:49:54 2005] ( info ) [jk_workerEnv.c (397)]  workerEnv.init() ok /xxx/apache/conf/workers2.properties
[Wed Feb 16 17:49:54 2005] ( info ) [mod_jk2.c (632)]  mod_jk2 child 10181 initialized
[Wed Feb 16 18:36:28 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 18:36:28 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 115
[Wed Feb 16 18:36:28 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 18:36:28 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 86
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 0
[Wed Feb 16 18:36:28 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 3, status 200
[Wed Feb 16 18:36:28 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 18:36:28 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 73
[Wed Feb 16 18:36:28 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 18:36:28 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 73
[Wed Feb 16 18:36:28 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 0
[Wed Feb 16 18:36:28 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 3, status 200
[Wed Feb 16 19:27:21 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 19:27:21 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 19:27:21 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 95
[Wed Feb 16 19:27:21 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 19:27:21 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 19:27:21 2005] ( info ) [jk_channel-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:43:59 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:43:59 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:43:59 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:43:59 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:09 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:09 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:09 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:09 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 1
[Wed Feb 16 17:44:09 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket -1
[Wed Feb 16 17:44:09 2005] ( info ) [jk_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:44:09 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:17 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 17:44:17 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 17:44:17 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 89
[Wed Feb 16 17:44:17 2005] (debug ) [jk_handler_response.c (162)]  Write failed - user closed connection or other network problems
[Wed Feb 16 17:44:17 2005] (error ) [jk_worker_ajp13.c (546)]  ajp13.service() ajpGetReply recoverable error 3
[Wed Feb 16 17:44:17 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 89
[Wed Feb 16 17:44:17 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket 1 0
[Wed Feb 16 17:44:17 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 3, status 200
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:localhost:8009
[Wed Feb 16 21:09:36 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 0 cached endpoints
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:localhost:8019
[Wed Feb 16 21:09:36 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 0 cached endpoints
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker status:
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 21:09:36 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 89
[Wed Feb 16 21:09:36 2005] ( info ) [jk_channel_un.c (321)]  channelUn.close(): close unix socket 103
[Wed Feb 16 21:09:36 2005] (debug ) [jk_worker_ajp13.c (980)]  ajp13.destroy() closed 2 cached endpoints
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (120)]  destroy worker lb:lb
[Wed Feb 16 21:09:36 2005] (debug ) [jk_workerEnv.c (127)]  workerEnv.close() done 5
k_worker_ajp13.c (689)]  ajp13.done() close endpoint ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket error_state 1
[Wed Feb 16 17:44:00 2005] (error ) [mod_jk2.c (752)]  mod_jk2.handler() Error connecting to tomcat 120000, status 0
[Wed Feb 16 17:44:03 2005] (error ) [jk_channel_un.c (295)]  channelUn.connect() connect failed 111 Connection refused
[Wed Feb 16 17:44:03 2005] (error ) [jk_worker_ajp13.c (331)]  ajp13.connect() failed ajp13:/xxx/jakarta-tomcat-5.0.18/logs/jk2.socket
[Wed Feb 16 17:44:03 2005] (error ) [jk_worker_ajp13.c (412)]  ajp13.service() failed to connect endpoint errno=111 Connection refused
[Wed Feb 16 17:44:03 2005] (error ) [jk_worker_ajp13.c (648)]  ajp13.service() Error  forwarding ajp13:/xxx/jakarta-tomcat-5

论坛徽章:
0
8 [报告]
发表于 2005-02-18 11:45 |只看该作者

Apache 一天死一次

问题还是没有解决,又死掉一次。哭啊。。。

论坛徽章:
0
9 [报告]
发表于 2005-02-18 15:05 |只看该作者

Apache 一天死一次

建议楼主换用1.x的apache

论坛徽章:
0
10 [报告]
发表于 2005-02-18 15:39 |只看该作者

Apache 一天死一次

看了一下的你的日志, 修改以下参数,你试试:

1.看看日志的那个分区的空间够不够, 包括你的JAVA日志, 同时看看一天下来你的日志文件是不是很大,超过2G了.

2.增大shmmax的数值.
echo xxx >; /proc/sys/kernel/shmmax

3.增大线程数值
echo XX >; /proc/sys/kernel/threads-max

4.增大打开文件数
echo X >; /proc/sys/kernel/fs/file-max

5.编辑apachectl文件

在前面加入  
ulimit -n xxx 打开文件数
ulimit -u XXX 打开线程数或线程数

OK, 改完了, 有没有效果, 把结果发上来看看.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP