우분투 apache2 에서 tomcat 서버로 연동이 되질 않습니다.

hytgbn의 이미지

안녕하세요,

몇일째 삽질중인데요 ㅠㅗㅜ

우분투 apache2 가 있고 tomcat7이 있습니다.
따로따로는 잘 되는데요..

mod_jk를 이용해서 연결하려고 하니... 자꾸 페이지를 찾을 수 없다고 나옵니다.

mod_jk 로그를 trace로 하고 보니
missing uri map for 127.0.0.1:/tc/index.jsp 라고 나오는데요..
이부분이 뭔가 해결책이 될지도 모르겠다는 생각이 드는데 어떻게.. 결론이 나질 않네요 ㅠㅗㅜ

혹시 비슷한일을 겪으신 분 계시면 답변 좀 부탁드립니다 .

apache2.conf는

LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so
 
 
 IfModule jk_module>
  JkWorkersFile /etc/libapache2-mod-jk/workers.properties
  JkShmFile     /var/log/apache2/mod_jk.shm
  JkLogFile     /var/log/apache2/mod_jk.log
  JkLogLevel    trace
  JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
  JkMount /manager/* worker1
  JkMount /tc/*.jsp  worker1
  JkMount /* worker1
 /IfModule>
 
 Directory />
  Options FollowSymLinks
  AllowOverride None
 /Directory>

worker.properties는

$ cat /etc/libapache2-mod-jk/workers.properties
# workers.properties -
#
# This file is a simplified version of the workers.properties supplied
# with the upstream sources. The jni inprocess worker (not build in the
# debian package) section and the ajp12 (deprecated) section are removed.
#
# As a general note, the characters $( and ) are used internally to define
# macros. Do not use them in your own configuration!!!
#
# Whenever you see a set of lines such as:
# x=value
# y=$(x)\something
#
# the final value for y will be value\something
#
# Normaly all you will need to do is un-comment and modify the first three
# properties, i.e. workers.tomcat_home, workers.java_home and ps.
# Most of the configuration is derived from these.
#
# When you are done updating workers.tomcat_home, workers.java_home and ps
# you should have 3 workers configured:
#
# - An ajp13 worker that connects to localhost:8009
# - A load balancer worker
#
#
 
# OPTIONS ( very important for jni mode )
 
#
# workers.tomcat_home should point to the location where you
# installed tomcat. This is where you have your conf, webapps and lib
# directories.
#
workers.tomcat_home=/usr/share/tomcat-7.0.8
 
#
# workers.java_home should point to your Java installation. Normally
# you should have a bin and lib directories beneath it.
#
workers.java_home=/usr/lib/jvm/java-6-openjdk
 
#
# You should configure your environment slash... ps=\ on NT and / on UNIX
# and maybe something different elsewhere.
#
ps=/
 
#
#------ ADVANCED MODE ------------------------------------------------
#---------------------------------------------------------------------
#
 
#
#------ worker list ------------------------------------------
#---------------------------------------------------------------------
#
#
# The workers that your plugins should create and work with
#
worker.list=worker1
 
#
#------ worker1 WORKER DEFINITION ------------------------------
#---------------------------------------------------------------------
#
 
#
# Defining a worker named ajp13_worker and of type ajp13
# Note that the name and the type do not have to match.
#
worker.worker1.port=8009
worker.worker1.host=localhost
worker.worker1.type=ajp13
#
# Specifies the load balance factor when used with
# a load balancing worker.
# Note:
#  ----> lbfactor must be > 0
#  ----> Low lbfactor means less work done by the worker.
worker.worker1.lbfactor=1
 
#
# Specify the size of the open connection cache.
#worker.worker1.cachesize
 
#
#------ DEFAULT LOAD BALANCER WORKER DEFINITION ----------------------
#---------------------------------------------------------------------
#
 
#
# The loadbalancer (type lb) workers perform wighted round-robin
# load balancing with sticky sessions.
# Note:
#  ----> If a worker dies, the load balancer will check its state
#        once in a while. Until then all work is redirected to peer
#        workers.
worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=worker1

apache2 가동부터 /tc/index.jsp 호출해본 로그는 아래와 같습니다.

==> mod_jk.log <==
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_set_time_fmt::jk_util.c (459): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S %Y]'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_alloc::jk_uri_worker_map.c (204): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_open::jk_uri_worker_map.c (764): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_open::jk_uri_worker_map.c (770): rule map size is 3
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/manager/*=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/tc/*.jsp=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/*=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (166): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (171): uri map dump after map open: index=0 file='(null)' reject_unsafe=0 reload=60 modified=0 checked=0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=3 nosize=0 capacity=4
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/manager/* worker=worker1 context=/manager/* source=JkMount type=Wildchar len=10
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/tc/*.jsp worker=worker1 context=/tc/*.jsp source=JkMount type=Wildchar len=9
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #2: uri=/* worker=worker1 context=/* source=JkMount type=Wildchar len=2
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (195): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_open::jk_uri_worker_map.c (830): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_alloc::jk_uri_worker_map.c (240): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_set_time_fmt::jk_util.c (459): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S %Y]'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] init_jk::mod_jk.c (3128): Setting default connection pool max size to 1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'workers.tomcat_home' with value '/usr/share/tomcat-7.0.8' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'workers.java_home' with value '/usr/lib/jvm/java-6-openjdk' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'ps' with value '/' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.list' with value 'worker1' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.port' with value '8009' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.host' with value 'localhost' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.type' with value 'ajp13' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.lbfactor' with value '1' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.loadbalancer.type' with value 'lb' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.loadbalancer.balance_workers' with value 'worker1' to map.
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_map_resolve_references::jk_map.c (766): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_resolve_references::jk_map.c (774): Checking for references with prefix worker. with wildcard (recursion 1)
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_map_resolve_references::jk_map.c (830): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_shm_calculate_size::jk_shm.c (97): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_shm_calculate_size::jk_shm.c (132): shared memory will contain 1 ajp workers of size 256 and 0 lb workers of size 320 with 0 members of size 320+256
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_shm_calculate_size::jk_shm.c (139): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] do_shm_open::jk_shm.c (493): Truncated shared memory to 384
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] do_shm_open::jk_shm.c (538): Initialized shared memory /var/log/apache2/mod_jk.shm.18203 size=384 free=256 addr=0xb771d000
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] do_shm_open_lock::jk_shm.c (412): Opened shared memory lock /var/log/apache2/mod_jk.shm.18203.lock
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] do_shm_open_lock::jk_shm.c (414): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_open::jk_worker.c (50): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ServerRoot' -> '/etc/apache2'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'workers.tomcat_home' -> '/usr/share/tomcat-7.0.8'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'workers.java_home' -> '/usr/lib/jvm/java-6-openjdk'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ps' -> '/'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.list' -> 'worker1'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.port' -> '8009'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.host' -> 'localhost'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.type' -> 'ajp13'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.lbfactor' -> '1'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.loadbalancer.type' -> 'lb'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.loadbalancer.balance_workers' -> 'worker1'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] build_worker_map::jk_worker.c (236): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] build_worker_map::jk_worker.c (242): creating worker worker1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_create_worker::jk_worker.c (126): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_create_worker::jk_worker.c (146): about to create instance worker1 of ajp13
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp13_worker_factory::jk_ajp13_worker.c (80): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_worker_factory::jk_ajp_common.c (2892): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_worker_factory::jk_ajp_common.c (2934): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp13_worker_factory::jk_ajp13_worker.c (92): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_create_worker::jk_worker.c (159): about to validate and init worker1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] validate::jk_ajp13_worker.c (35): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_validate::jk_ajp_common.c (2579): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_validate::jk_ajp_common.c (2605): worker worker1 contact is 'localhost:8009'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_resolve::jk_connect.c (329): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] jk_resolve::jk_connect.c (406): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_validate::jk_ajp_common.c (2616): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] validate::jk_ajp13_worker.c (37): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] init::jk_ajp13_worker.c (47): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_init::jk_ajp_common.c (2700): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2800): setting endpoint options:
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2803): keepalive:              0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2807): socket timeout:         0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2811): socket connect timeout: 0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2815): buffer size:            0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2819): pool timeout:           0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2823): ping timeout:           10000
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2827): connect timeout:        0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2831): reply timeout:          0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2835): prepost timeout:        0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2839): recovery options:       0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2843): retries:                2
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2847): max packet size:        8192
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_init::jk_ajp_common.c (2851): retry interval:         100
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_create_endpoint_cache::jk_ajp_common.c (2653): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2662): setting connection pool size to 1 with min 1 and acquire timeout 200
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_create_endpoint_cache::jk_ajp_common.c (2688): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] ajp_init::jk_ajp_common.c (2883): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] init::jk_ajp13_worker.c (50): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_create_worker::jk_worker.c (198): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] build_worker_map::jk_worker.c (270): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_open::jk_worker.c (88): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [info] init_jk::mod_jk.c (3189): mod_jk/1.2.30 initialized
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_ext::jk_uri_worker_map.c (497): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 0: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 1: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 2: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (166): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (171): uri map dump after extension stripping: index=0 file='(null)' reject_unsafe=0 reload=60 modified=0 checked=0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=3 nosize=0 capacity=4
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/manager/* worker=worker1 context=/manager/* source=JkMount type=Wildchar len=10
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/tc/*.jsp worker=worker1 context=/tc/*.jsp source=JkMount type=Wildchar len=9
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #2: uri=/* worker=worker1 context=/* source=JkMount type=Wildchar len=2
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (195): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_ext::jk_uri_worker_map.c (576): exit
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_switch::jk_uri_worker_map.c (477): enter
[Fri Feb 11 00:34:54 2011][18203:3077609200] [debug] uri_worker_map_switch::jk_uri_worker_map.c (482): Switching uri worker map from index 0 to index 1
[Fri Feb 11 00:34:54 2011][18203:3077609200] [trace] uri_worker_map_switch::jk_uri_worker_map.c (489): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_set_time_fmt::jk_util.c (459): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S %Y]'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_alloc::jk_uri_worker_map.c (204): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_open::jk_uri_worker_map.c (764): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_open::jk_uri_worker_map.c (770): rule map size is 3
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/manager/*=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/tc/*.jsp=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (591): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/*=worker1' source 'JkMount' was added
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_add::jk_uri_worker_map.c (755): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (166): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (171): uri map dump after map open: index=0 file='(null)' reject_unsafe=0 reload=60 modified=0 checked=0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=3 nosize=0 capacity=4
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/manager/* worker=worker1 context=/manager/* source=JkMount type=Wildchar len=10
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/tc/*.jsp worker=worker1 context=/tc/*.jsp source=JkMount type=Wildchar len=9
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #2: uri=/* worker=worker1 context=/* source=JkMount type=Wildchar len=2
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (195): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_open::jk_uri_worker_map.c (830): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_alloc::jk_uri_worker_map.c (240): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_set_time_fmt::jk_util.c (459): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S %Y]'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] init_jk::mod_jk.c (3128): Setting default connection pool max size to 1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'workers.tomcat_home' with value '/usr/share/tomcat-7.0.8' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'workers.java_home' with value '/usr/lib/jvm/java-6-openjdk' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'ps' with value '/' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.list' with value 'worker1' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.port' with value '8009' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.host' with value 'localhost' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.type' with value 'ajp13' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.worker1.lbfactor' with value '1' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.loadbalancer.type' with value 'lb' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.loadbalancer.balance_workers' with value 'worker1' to map.
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_map_resolve_references::jk_map.c (766): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_resolve_references::jk_map.c (774): Checking for references with prefix worker. with wildcard (recursion 1)
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_map_resolve_references::jk_map.c (830): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_shm_calculate_size::jk_shm.c (97): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_shm_calculate_size::jk_shm.c (132): shared memory will contain 1 ajp workers of size 256 and 0 lb workers of size 320 with 0 members of size 320+256
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_shm_calculate_size::jk_shm.c (139): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] do_shm_open::jk_shm.c (493): Truncated shared memory to 384
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] do_shm_open::jk_shm.c (538): Initialized shared memory /var/log/apache2/mod_jk.shm.18204 size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] do_shm_open_lock::jk_shm.c (412): Opened shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] do_shm_open_lock::jk_shm.c (414): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_open::jk_worker.c (50): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ServerRoot' -> '/etc/apache2'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'workers.tomcat_home' -> '/usr/share/tomcat-7.0.8'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'workers.java_home' -> '/usr/lib/jvm/java-6-openjdk'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ps' -> '/'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.list' -> 'worker1'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.port' -> '8009'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.host' -> 'localhost'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.type' -> 'ajp13'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.worker1.lbfactor' -> '1'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.loadbalancer.type' -> 'lb'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.loadbalancer.balance_workers' -> 'worker1'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] build_worker_map::jk_worker.c (236): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] build_worker_map::jk_worker.c (242): creating worker worker1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_create_worker::jk_worker.c (126): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_create_worker::jk_worker.c (146): about to create instance worker1 of ajp13
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp13_worker_factory::jk_ajp13_worker.c (80): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_worker_factory::jk_ajp_common.c (2892): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_worker_factory::jk_ajp_common.c (2934): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp13_worker_factory::jk_ajp13_worker.c (92): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_create_worker::jk_worker.c (159): about to validate and init worker1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] validate::jk_ajp13_worker.c (35): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_validate::jk_ajp_common.c (2579): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_validate::jk_ajp_common.c (2605): worker worker1 contact is 'localhost:8009'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_resolve::jk_connect.c (329): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] jk_resolve::jk_connect.c (406): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_validate::jk_ajp_common.c (2616): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] validate::jk_ajp13_worker.c (37): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] init::jk_ajp13_worker.c (47): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_init::jk_ajp_common.c (2700): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2800): setting endpoint options:
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2803): keepalive:              0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2807): socket timeout:         0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2811): socket connect timeout: 0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2815): buffer size:            0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2819): pool timeout:           0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2823): ping timeout:           10000
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2827): connect timeout:        0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2831): reply timeout:          0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2835): prepost timeout:        0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2839): recovery options:       0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2843): retries:                2
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2847): max packet size:        8192
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_init::jk_ajp_common.c (2851): retry interval:         100
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_create_endpoint_cache::jk_ajp_common.c (2653): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2662): setting connection pool size to 1 with min 1 and acquire timeout 200
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_create_endpoint_cache::jk_ajp_common.c (2688): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] ajp_init::jk_ajp_common.c (2883): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] init::jk_ajp13_worker.c (50): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_create_worker::jk_worker.c (198): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] build_worker_map::jk_worker.c (270): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_open::jk_worker.c (88): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [info] init_jk::mod_jk.c (3189): mod_jk/1.2.30 initialized
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_ext::jk_uri_worker_map.c (497): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 0: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 1: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (106): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker worker1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] wc_get_worker_for_name::jk_worker.c (118): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 2: worker1 of type ajp13 (2)
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (166): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (171): uri map dump after extension stripping: index=0 file='(null)' reject_unsafe=0 reload=60 modified=0 checked=0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=3 nosize=0 capacity=4
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/manager/* worker=worker1 context=/manager/* source=JkMount type=Wildchar len=10
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/tc/*.jsp worker=worker1 context=/tc/*.jsp source=JkMount type=Wildchar len=9
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #2: uri=/* worker=worker1 context=/* source=JkMount type=Wildchar len=2
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_dump::jk_uri_worker_map.c (195): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_ext::jk_uri_worker_map.c (576): exit
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_switch::jk_uri_worker_map.c (477): enter
[Fri Feb 11 00:34:55 2011][18204:3077609200] [debug] uri_worker_map_switch::jk_uri_worker_map.c (482): Switching uri worker map from index 0 to index 1
[Fri Feb 11 00:34:55 2011][18204:3077609200] [trace] uri_worker_map_switch::jk_uri_worker_map.c (489): exit
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18209:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [2] size=384 free=0 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18209:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 2
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18209:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18209:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:34:55 2011][18209:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18210:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [3] size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18210:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 3
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18210:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18210:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:34:55 2011][18210:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18211:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [4] size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18211:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 4
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18211:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18211:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:34:55 2011][18211:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18212:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [5] size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18212:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 5
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18212:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18212:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:34:55 2011][18212:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:34:55 2011][18213:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [6] size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:34:55 2011][18213:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 6
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:34:55 2011][18213:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:34:55 2011][18213:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:34:55 2011][18213:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
 
 
 
 
[Fri Feb 11 00:39:39 2011][18209:3077609200] [debug] jk_translate::mod_jk.c (3425): missing uri map for 127.0.1.1:/tc/index.jsp
[Fri Feb 11 00:39:39 2011][18209:3077609200] [debug] jk_map_to_storage::mod_jk.c (3585): missing uri map for 127.0.1.1:/tc/index.jsp
[Fri Feb 11 00:39:39 2011][18209:3077609200] [debug] jk_translate::mod_jk.c (3425): missing uri map for 127.0.1.1:/favicon.ico
[Fri Feb 11 00:39:39 2011][18209:3077609200] [debug] jk_map_to_storage::mod_jk.c (3585): missing uri map for 127.0.1.1:/favicon.ico
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] jk_child_init::mod_jk.c (3050): enter
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] do_shm_open::jk_shm.c (428): enter
[Fri Feb 11 00:39:40 2011][18229:3077609200] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /var/log/apache2/mod_jk.shm.18204 [7] size=384 free=256 addr=0xb71e0000
[Fri Feb 11 00:39:40 2011][18229:3077609200] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 7
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] do_shm_open_lock::jk_shm.c (339): enter
[Fri Feb 11 00:39:40 2011][18229:3077609200] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /var/log/apache2/mod_jk.shm.18204.lock
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] do_shm_open_lock::jk_shm.c (355): exit
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] do_shm_open::jk_shm.c (591): exit
[Fri Feb 11 00:39:40 2011][18229:3077609200] [debug] jk_child_init::mod_jk.c (3073): Initialized mod_jk/1.2.30
[Fri Feb 11 00:39:40 2011][18229:3077609200] [trace] jk_child_init::mod_jk.c (3074): exit
hytgbn의 이미지

내용이 안보이는거 같아요;; 왜그럴까요 ㅠㅗㅜ

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.