IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Tomcat et TomEE Java Discussion :

[Débutant] Serveur front end Apache et Tomcat distant


Sujet :

Tomcat et TomEE Java

  1. #1
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut [Débutant] Serveur front end Apache et Tomcat distant
    Bonjour à tous,

    Je suis débutant sous Tomcat/Apache et en attendant de recevoir le livre "Apache Tomcat 6 - Guide d'administration du serveur Java EE sous Windows et Linux", je m'exerce un peu...

    J'ai un premier serveur où j'ai installé Apache 2 et le mod_jk. Voici les fichiers de config :

    /etc/httpd/conf/worker.properties :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    ps=/
    worker.list=default
    worker.default.port=8009
    worker.default.host=192.168.1.131 (adresse de mon serveur Tomcat)
    worker.default.type=ajp13
    /etc/httpd/conf/httpd.conf :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    LoadModule jk_module modules/mod_jk.so
    #
    # Mod_jk settings
    #
       JkWorkersFile "/etc/httpd/conf/worker.properties"
       JkLogFile "/etc/httpd/logs/mod_jk.log"
       JkLogLevel warning
       JkMount /examples default
       JkMount /examples/* default
    # End of mod_jk settings
    Et un deuxième serveur où j'ai installé Tomcat 6, dont voici les fichiers de config :

    /usr/local/tomcat/conf/server.xml :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <!-- Define an AJP 1.3 Connector on port 8009 -->
        <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
     
        <Engine name="Catalina" defaultHost="localhost" jvmRoute="default">
    Lorsque je me connecte via http://server2:8080, ca fonctionne nickel, j'ai la page de base de tomcat.
    Maintenant lorsque j'essaye de me connecter via http://server1/examples j'ai une page blanche et pas d'erreur dans les logs du mod_jk... Si j'ai bien compris, je devrais voir le contenu du répertoire examples qui se trouve sur server2 ? Mes 2 serveurs sont sous Centos 5.2

    Qu'est ce que j'ai oublié de configurer ? J'ai suivi ce how to.

    Merci d'avance à tous !

  2. #2
    Rédacteur
    Avatar de lunatix
    Homme Profil pro
    Architecte technique
    Inscrit en
    Novembre 2002
    Messages
    1 960
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Architecte technique

    Informations forums :
    Inscription : Novembre 2002
    Messages : 1 960
    Points : 3 736
    Points
    3 736
    Par défaut
    je te conseille de laisser tomber le mod_jk qui est complexe a configurer et de te tourner vers le mod_proxy_http de apache 2 : beaucoup plus simple et tout aussi performant (voir plus)

    http://www.developpez.net/forums/d81...apache-tomcat/

  3. #3
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    Ok merci, je regarderai ça tout à l'heure...

    Mais ca m'énerve, ca n'avait pas l'air si compliqué à installer...
    Mettre le mod_jk.so dans le répertoire Modules puis configurer les 2 fichiers que j'ai mis plus haut, je ne comprend pas pq ca ne fonctionne pas !

  4. #4
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 481
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 481
    Points : 48 806
    Points
    48 806
    Par défaut
    Citation Envoyé par lunatix Voir le message
    je te conseille de laisser tomber le mod_jk qui est complexe a configurer et de te tourner vers le mod_proxy_http de apache 2 : beaucoup plus simple et tout aussi performant (voir plus)
    Et moi je conseille au contraire mod_jk qui présente les avantages suivant
    -> tomcat "vois" l'ip du demandeur et pas celle de apache (très utile pour le logging ou le filtrage)
    -> tomcat "vois" l'adresse/port du serveur apache comme étant sa propre adresse, pas besoin de rajouter un module pour réécrire la réponse et adapter toutes les urls.
    -> la connection peut être sécurisée
    -> Il n'est franchement pas difficile à configurer

    Citation Envoyé par Ren's Voir le message

    Qu'est ce que j'ai oublié de configurer ? J'ai suivi ce how to.

    Merci d'avance à tous !
    Corrige ton worker.properties comme ceci, pour commencer:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    worker.list=default
    worker.default.type=lb
    worker.default.balance_workers=server1
     
    worker.server1.port=8009
    worker.server1.host=192.168.1.131 
    worker.server1.type=ajp13
    J'avais lu à plusieurs endroits que mod_jk exige que tu passe à deux niveau comme ceci, même si tu ne veux pas de loadbalancer.


    La meilleures doc pour configurer mod_jk reste ici:
    http://tomcat.apache.org/connectors-...to/apache.html

  5. #5
    Rédacteur
    Avatar de lunatix
    Homme Profil pro
    Architecte technique
    Inscrit en
    Novembre 2002
    Messages
    1 960
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Architecte technique

    Informations forums :
    Inscription : Novembre 2002
    Messages : 1 960
    Points : 3 736
    Points
    3 736
    Par défaut
    tu peux récupérer les ips clientes dans le header http X-Forwarded-For
    tu peux aussi sécuriser la connexion apache <-> tomcat en http (s)

    sous une forte charge, debugguer du mod_jk c'est l'enfer (enfin je trouve)

    apres bon, question de gouts

  6. #6
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 481
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 481
    Points : 48 806
    Points
    48 806
    Par défaut
    Citation Envoyé par lunatix Voir le message
    tu peux récupérer les ips clientes dans le header http X-Forwarded-For
    Ca nécessite que ta webapp sache qu'elle tourne derrière mod_proxy. Avec mod_jk, c'est transparent, tu peut prendre un webapp du commerce et la déployer, elle verra rien

    tu peux aussi sécuriser la connexion apache <-> tomcat en http (s)
    Je parlais pas de crypter mais de s'assurer que seuls les front-end autorisés se connectent au back-end (ca peut se faire aussi avec du firewalling en cas de mod_proxy)

    sous une forte charge, debugguer du mod_jk c'est l'enfer (enfin je trouve)
    Sous une forte charge, tu lance pas un debuggeur d'une manière générale
    apres bon, question de gouts
    Et surtout de besoins

  7. #7
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    Holla vous battez pas hein

    Merci pour toutes les infos, je vais tester les 2 méthodes... Au sujet de ton lien tchize, j'allais le suivre ce matin mais j'ai eu une course à faire !
    Je vais bientôt avoir à gérer plusieurs serveurs web sous RHEL avec apache, tomcat, jboss et mysql pour un nouveau boulot, je cherche donc à me renseigner un max avant de commencer ! Étant plutôt branché infrastructure réseau (Cisco et cie) j'ai vraiment beaucoup à apprendre...

    J'ai commandé ces 2 livres :
    Mysql
    Tomcat

    Les avez-vous déjà lu ?

  8. #8
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    J'ai modifié mes fichiers comme tu as dis.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    worker.list=default, server1
    worker.default.type=lb
    worker.default.balance_workers=server1
     
    worker.server1.port=8009
    worker.server1.host=192.168.1.131 
    worker.server1.type=ajp13
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    LoadModule jk_module modules/mod_jk.so
    #
    # Mod_jk settings
    #
       JkWorkersFile "/etc/httpd/conf/worker.properties"
       JkLogFile "/etc/httpd/logs/mod_jk.log"
       JkLogLevel warning
       JkMount /examples server1
       JkMount /examples/* server1
    # End of mod_jk settings
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <!-- Define an AJP 1.3 Connector on port 8009 -->
        <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
     
        <Engine name="Catalina" defaultHost="localhost" jvmRoute="server1">
    J'ai rajouté server1 à la liste des workers par rapport à ce que tu avais mis car j'avais une erreur dans les logs d'apache. Actuellement j'en suis au même point qu'avec la configuration de base, c'est à dire une page blanche et pas d'erreur dans les logs...

    Voici le log d'apache :
    [info] init_jk::mod_jk.c (3183): mod_jk/1.2.28 initialized

    Par contre j'ai une erreur concernant les librairies dans le log de tomcat :
    he APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/local/jdk1.6.0_17/jre/lib/i386/client:/usr/local/jdk1.6.0_17/jre/lib/i386:/usr/local/jdk1.6.0_17/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib

    Apparemment un problème avec ma variable JAVA_HOME ? Pourtant le serveur effectue bien son travail concernant le java...

  9. #9
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 481
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 481
    Points : 48 806
    Points
    48 806
    Par défaut
    si tu passe ton loglevel en debug, tu as quoi pendant que tu essaie d'avoir une page? PS: ton message tomcat est juste un warning, c'est pas important.

  10. #10
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    Je te copie le debug ci dessous mais je dois partir, je n'ai pas le temps d'y jeter un coup d'oeuil de suite. Je fais ça ce soir en rentrant !

    Code txt : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_set_time_fmt::jk_util.c (458): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S.000 %Y] '
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_open::jk_uri_worker_map.c (770): rule map size is 2
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_add::jk_uri_worker_map.c (729): exact rule '/examples=server1' source 'JkMount' was added
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/examples/*=server1' source 'JkMount' was added
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [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 Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=2 nosize=0 capacity=4
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/examples/* worker=server1 context=/examples/* source=JkMount type=Wildchar len=11
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/examples worker=server1 context=/examples source=JkMount type=Exact len=9
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_set_time_fmt::jk_util.c (458): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S.000 %Y] '
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] init_jk::mod_jk.c (3123): Setting default connection pool max size to 1
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'ps' with value '/' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.list' with value 'default, server1' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.default.type' with value 'lb' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.default.balance_workers' with value 'server1' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.port' with value '8009' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.host' with value '192.168.1.131' to map.
    [Fri Dec 11 15:48:23.082 2009] [14434:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.type' with value 'ajp13' to map.
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_resolve_references::jk_map.c (774): Checking for references with prefix worker. with wildcard (recursion 1)
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_shm_calculate_size::jk_shm.c (125): worker default of type lb has 1 members
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_shm_calculate_size::jk_shm.c (132): shared memory will contain 1 ajp workers of size 256 and 1 lb workers of size 320 with 1 members of size 320+256
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] do_shm_open::jk_shm.c (493): Truncated shared memory to 1280
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] do_shm_open::jk_shm.c (538): Initialized shared memory /etc/httpd/logs/jk-runtime-status.14434 size=1280 free=1152 addr=0xb7f1a000
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] do_shm_open_lock::jk_shm.c (412): Opened shared memory lock /etc/httpd/logs/jk-runtime-status.14434.lock
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ServerRoot' -> '/etc/httpd'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ps' -> '/'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.list' -> 'default, server1'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.default.type' -> 'lb'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.default.balance_workers' -> 'server1'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.port' -> '8009'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.host' -> '192.168.1.131'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.type' -> 'ajp13'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] build_worker_map::jk_worker.c (242): creating worker default
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance default of lb
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init default
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance server1 of ajp13
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init server1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_validate::jk_ajp_common.c (2512): worker server1 contact is '192.168.1.131:8009'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2699): setting endpoint options:
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2702): keepalive:              0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2706): socket timeout:         0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2710): socket connect timeout: 0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2714): buffer size:            0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2718): pool timeout:           0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2722): ping timeout:           10000
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2726): connect timeout:        0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2730): reply timeout:          0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2734): prepost timeout:        0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2738): recovery options:       0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2742): retries:                2
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2746): max packet size:        8192
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2750): retry interval:         100
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2562): setting connection pool size to 1 with min 1 and acquire timeout 200
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] validate::jk_lb_worker.c (1616): Balanced worker 0 has name server1 and route server1 in domain 
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] update_mult::jk_lb_worker.c (261): worker server1 gets multiplicity 1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] jk_lb_push::jk_lb_worker.c (347): syncing shm for lb 'default' from mem (0->1)
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] build_worker_map::jk_worker.c (242): creating worker server1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance server1 of ajp13
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init server1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_validate::jk_ajp_common.c (2512): worker server1 contact is '192.168.1.131:8009'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2699): setting endpoint options:
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2702): keepalive:              0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2706): socket timeout:         0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2710): socket connect timeout: 0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2714): buffer size:            0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2718): pool timeout:           0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2722): ping timeout:           10000
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2726): connect timeout:        0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2730): reply timeout:          0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2734): prepost timeout:        0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2738): recovery options:       0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2742): retries:                2
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2746): max packet size:        8192
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_init::jk_ajp_common.c (2750): retry interval:         100
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2562): setting connection pool size to 1 with min 1 and acquire timeout 200
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [info] init_jk::mod_jk.c (3183): mod_jk/1.2.28 initialized
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 0: server1 of type ajp13 (2)
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 1: server1 of type ajp13 (2)
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [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 Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=2 nosize=0 capacity=4
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/examples/* worker=server1 context=/examples/* source=JkMount type=Wildchar len=11
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/examples worker=server1 context=/examples source=JkMount type=Exact len=9
    [Fri Dec 11 15:48:23.083 2009] [14434:3085969168] [debug] uri_worker_map_switch::jk_uri_worker_map.c (482): Switching uri worker map from index 0 to index 1
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_set_time_fmt::jk_util.c (458): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S.000 %Y] '
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_open::jk_uri_worker_map.c (770): rule map size is 2
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_add::jk_uri_worker_map.c (729): exact rule '/examples=server1' source 'JkMount' was added
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_add::jk_uri_worker_map.c (720): wildchar rule '/examples/*=server1' source 'JkMount' was added
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [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 Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=2 nosize=0 capacity=4
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/examples/* worker=server1 context=/examples/* source=JkMount type=Wildchar len=11
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/examples worker=server1 context=/examples source=JkMount type=Exact len=9
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_set_time_fmt::jk_util.c (458): Pre-processed log time stamp format is '[%a %b %d %H:%M:%S.000 %Y] '
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] init_jk::mod_jk.c (3123): Setting default connection pool max size to 1
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'ps' with value '/' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.list' with value 'default, server1' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.default.type' with value 'lb' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.default.balance_workers' with value 'server1' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.port' with value '8009' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.host' with value '192.168.1.131' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_read_property::jk_map.c (491): Adding property 'worker.server1.type' with value 'ajp13' to map.
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_resolve_references::jk_map.c (774): Checking for references with prefix worker. with wildcard (recursion 1)
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_shm_calculate_size::jk_shm.c (125): worker default of type lb has 1 members
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_shm_calculate_size::jk_shm.c (132): shared memory will contain 1 ajp workers of size 256 and 1 lb workers of size 320 with 1 members of size 320+256
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] do_shm_open::jk_shm.c (493): Truncated shared memory to 1280
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] do_shm_open::jk_shm.c (538): Initialized shared memory /etc/httpd/logs/jk-runtime-status.14435 size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] do_shm_open_lock::jk_shm.c (412): Opened shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ServerRoot' -> '/etc/httpd'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'ps' -> '/'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.list' -> 'default, server1'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.default.type' -> 'lb'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.default.balance_workers' -> 'server1'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.port' -> '8009'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.host' -> '192.168.1.131'
    [Fri Dec 11 15:48:23.167 2009] [14435:3085969168] [debug] jk_map_dump::jk_map.c (589): Dump of map: 'worker.server1.type' -> 'ajp13'
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] build_worker_map::jk_worker.c (242): creating worker default
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance default of lb
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init default
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance server1 of ajp13
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init server1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_validate::jk_ajp_common.c (2512): worker server1 contact is '192.168.1.131:8009'
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2699): setting endpoint options:
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2702): keepalive:              0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2706): socket timeout:         0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2710): socket connect timeout: 0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2714): buffer size:            0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2718): pool timeout:           0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2722): ping timeout:           10000
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2726): connect timeout:        0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2730): reply timeout:          0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2734): prepost timeout:        0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2738): recovery options:       0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2742): retries:                2
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2746): max packet size:        8192
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2750): retry interval:         100
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2562): setting connection pool size to 1 with min 1 and acquire timeout 200
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] validate::jk_lb_worker.c (1616): Balanced worker 0 has name server1 and route server1 in domain 
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] update_mult::jk_lb_worker.c (261): worker server1 gets multiplicity 1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] jk_lb_push::jk_lb_worker.c (347): syncing shm for lb 'default' from mem (0->1)
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] build_worker_map::jk_worker.c (242): creating worker server1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (146): about to create instance server1 of ajp13
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_create_worker::jk_worker.c (159): about to validate and init server1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_validate::jk_ajp_common.c (2512): worker server1 contact is '192.168.1.131:8009'
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2699): setting endpoint options:
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2702): keepalive:              0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2706): socket timeout:         0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2710): socket connect timeout: 0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2714): buffer size:            0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2718): pool timeout:           0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2722): ping timeout:           10000
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2726): connect timeout:        0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2730): reply timeout:          0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2734): prepost timeout:        0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2738): recovery options:       0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2742): retries:                2
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2746): max packet size:        8192
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_init::jk_ajp_common.c (2750): retry interval:         100
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2562): setting connection pool size to 1 with min 1 and acquire timeout 200
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [info] init_jk::mod_jk.c (3183): mod_jk/1.2.28 initialized
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 0: server1 of type ajp13 (2)
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_ext::jk_uri_worker_map.c (512): Checking extension for worker 1: server1 of type ajp13 (2)
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [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 Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 0: size=0 nosize=0 capacity=0
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (176): generation 1: size=2 nosize=0 capacity=4
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #0: uri=/examples/* worker=server1 context=/examples/* source=JkMount type=Wildchar len=11
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_dump::jk_uri_worker_map.c (186): NEXT (1) map #1: uri=/examples worker=server1 context=/examples source=JkMount type=Exact len=9
    [Fri Dec 11 15:48:23.168 2009] [14435:3085969168] [debug] uri_worker_map_switch::jk_uri_worker_map.c (482): Switching uri worker map from index 0 to index 1
    [Fri Dec 11 15:48:23.237 2009] [14437:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [2] size=1280 free=0 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.238 2009] [14437:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 2
    [Fri Dec 11 15:48:23.238 2009] [14437:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.238 2009] [14437:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.238 2009] [14438:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [3] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.238 2009] [14438:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 3
    [Fri Dec 11 15:48:23.238 2009] [14438:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.238 2009] [14438:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.239 2009] [14439:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [4] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.239 2009] [14439:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 4
    [Fri Dec 11 15:48:23.239 2009] [14439:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.239 2009] [14439:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.239 2009] [14440:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [5] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.239 2009] [14440:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 5
    [Fri Dec 11 15:48:23.239 2009] [14440:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.239 2009] [14440:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.240 2009] [14441:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [6] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.240 2009] [14441:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 6
    [Fri Dec 11 15:48:23.240 2009] [14441:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.240 2009] [14441:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.240 2009] [14442:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [7] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.240 2009] [14442:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 7
    [Fri Dec 11 15:48:23.240 2009] [14442:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.240 2009] [14442:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.241 2009] [14443:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [8] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.241 2009] [14443:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 8
    [Fri Dec 11 15:48:23.241 2009] [14443:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.241 2009] [14443:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:23.241 2009] [14444:3085969168] [debug] do_shm_open::jk_shm.c (550): Attached shared memory /etc/httpd/logs/jk-runtime-status.14435 [9] size=1280 free=1152 addr=0xb7ee8000
    [Fri Dec 11 15:48:23.241 2009] [14444:3085969168] [debug] do_shm_open::jk_shm.c (564): Resetting the shared memory for child 9
    [Fri Dec 11 15:48:23.241 2009] [14444:3085969168] [debug] do_shm_open_lock::jk_shm.c (353): Duplicated shared memory lock /etc/httpd/logs/jk-runtime-status.14435.lock
    [Fri Dec 11 15:48:23.241 2009] [14444:3085969168] [debug] jk_child_init::mod_jk.c (3068): Initialized mod_jk/1.2.28
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1036): Attempting to map URI '/favicon.ico' from 2 maps
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples/*=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] jk_translate::mod_jk.c (3536): no match for /favicon.ico found
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1036): Attempting to map URI '/favicon.ico' from 2 maps
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples/*=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.104 2009] [14437:3085969168] [debug] jk_map_to_storage::mod_jk.c (3603): no match for /favicon.ico found
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1036): Attempting to map URI '/examples' from 2 maps
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples/*=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples=server1' source 'JkMount'
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] find_match::jk_uri_worker_map.c (873): Found an exact match '/examples=server1'
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] jk_handler::mod_jk.c (2459): Into handler jakarta-servlet worker=server1 r->proxyreq=0
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] wc_maintain::jk_worker.c (339): Maintaining worker default
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] wc_maintain::jk_worker.c (339): Maintaining worker server1
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] init_ws_service::mod_jk.c (977): Service protocol=HTTP/1.1 method=GET ssl=false host=(null) addr=192.168.1.130 name=server.rens.intranet port=80 auth=(null) user=(null) laddr=192.168.1.130 raddr=192.168.1.130 uri=/examples
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] ajp_get_endpoint::jk_ajp_common.c (2977): acquired connection pool slot=0 after 0 retries
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (605): ajp marshaling done
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] ajp_service::jk_ajp_common.c (2283): processing server1 with 2 retries
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] ajp_send_request::jk_ajp_common.c (1501): (server1) all endpoints are disconnected.
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] jk_open_socket::jk_connect.c (452): socket TCP_NODELAY set to On
    [Fri Dec 11 15:48:41.358 2009] [14438:3085969168] [debug] jk_open_socket::jk_connect.c (576): trying to connect socket 20 to 192.168.1.131:8009
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] jk_open_socket::jk_connect.c (602): socket 20 connected to 192.168.1.131:8009
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connect_to_endpoint::jk_ajp_common.c (931): Connected socket 20 to (192.168.1.131:8009)
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): sending to ajp13 pos=4 len=443 max=8192
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0000    12 34 01 B7 02 02 00 08 48 54 54 50 2F 31 2E 31  - .4......HTTP/1.1
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0010    00 00 09 2F 65 78 61 6D 70 6C 65 73 00 00 0D 31  - .../examples...1
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0020    39 32 2E 31 36 38 2E 31 2E 31 33 30 00 FF FF 00  - 92.168.1.130....
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0030    14 73 65 72 76 65 72 2E 72 65 6E 73 2E 69 6E 74  - .server.rens.int
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0040    72 61 6E 65 74 00 00 50 00 00 09 A0 0B 00 14 73  - ranet..P.......s
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0050    65 72 76 65 72 2E 72 65 6E 73 2E 69 6E 74 72 61  - erver.rens.intra
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0060    6E 65 74 00 A0 0E 00 6F 4D 6F 7A 69 6C 6C 61 2F  - net....oMozilla/
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0070    35 2E 30 20 28 58 31 31 3B 20 55 3B 20 4C 69 6E  - 5.0.(X11;.U;.Lin
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0080    75 78 20 69 36 38 36 3B 20 65 6E 2D 55 53 3B 20  - ux.i686;.en-US;.
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0090    72 76 3A 31 2E 39 2E 30 2E 31 35 29 20 47 65 63  - rv:1.9.0.15).Gec
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00a0    6B 6F 2F 32 30 30 39 31 30 32 39 31 38 20 43 65  - ko/2009102918.Ce
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00b0    6E 74 4F 53 2F 33 2E 30 2E 31 35 2D 33 2E 65 6C  - ntOS/3.0.15-3.el
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00c0    35 2E 63 65 6E 74 6F 73 20 46 69 72 65 66 6F 78  - 5.centos.Firefox
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00d0    2F 33 2E 30 2E 31 35 00 A0 01 00 3F 74 65 78 74  - /3.0.15....?text
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00e0    2F 68 74 6D 6C 2C 61 70 70 6C 69 63 61 74 69 6F  - /html,applicatio
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00f0    6E 2F 78 68 74 6D 6C 2B 78 6D 6C 2C 61 70 70 6C  - n/xhtml+xml,appl
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0100    69 63 61 74 69 6F 6E 2F 78 6D 6C 3B 71 3D 30 2E  - ication/xml;q=0.
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0110    39 2C 2A 2F 2A 3B 71 3D 30 2E 38 00 00 0F 41 63  - 9,*/*;q=0.8...Ac
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0120    63 65 70 74 2D 4C 61 6E 67 75 61 67 65 00 00 0E  - cept-Language...
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0130    65 6E 2D 75 73 2C 65 6E 3B 71 3D 30 2E 35 00 00  - en-us,en;q=0.5..
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0140    0F 41 63 63 65 70 74 2D 45 6E 63 6F 64 69 6E 67  - .Accept-Encoding
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0150    00 00 0C 67 7A 69 70 2C 64 65 66 6C 61 74 65 00  - ...gzip,deflate.
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0160    00 0E 41 63 63 65 70 74 2D 43 68 61 72 73 65 74  - ..Accept-Charset
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0170    00 00 1E 49 53 4F 2D 38 38 35 39 2D 31 2C 75 74  - ...ISO-8859-1,ut
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0180    66 2D 38 3B 71 3D 30 2E 37 2C 2A 3B 71 3D 30 2E  - f-8;q=0.7,*;q=0.
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0190    37 00 00 0A 4B 65 65 70 2D 41 6C 69 76 65 00 00  - 7...Keep-Alive..
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01a0    03 33 30 30 00 A0 06 00 0A 6B 65 65 70 2D 61 6C  - .300.....keep-al
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01b0    69 76 65 00 A0 08 00 01 30 00 FF 00 00 00 00 00  - ive.....0.......
    [Fri Dec 11 15:48:41.359 2009] [14438:3085969168] [debug] ajp_send_request::jk_ajp_common.c (1560): (server1) request body to send 0 - request body to resend 0
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): received from ajp13 pos=0 len=19 max=8192
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0000    04 01 90 00 0B 42 61 64 20 52 65 71 75 65 73 74  - .....Bad.Request
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0010    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_unmarshal_response::jk_ajp_common.c (660): status = 400
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_unmarshal_response::jk_ajp_common.c (667): Number of headers is = 0
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): received from ajp13 pos=0 len=2 max=8192
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0000    05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_process_callback::jk_ajp_common.c (1846): AJP13 protocol: Reuse is OK
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_reset_endpoint::jk_ajp_common.c (743): (server1) resetting endpoint with sd = 20 
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] ajp_done::jk_ajp_common.c (2905): recycling connection pool slot=0 for worker server1
    [Fri Dec 11 15:48:41.360 2009] [14438:3085969168] [debug] jk_handler::mod_jk.c (2599): Service finished with status=400 for worker=server1
    [Fri Dec 11 15:48:42.717 2009] [14439:3085969168] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1036): Attempting to map URI '/examples' from 2 maps
    [Fri Dec 11 15:48:42.717 2009] [14439:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples/*=server1' source 'JkMount'
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/examples=server1' source 'JkMount'
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] find_match::jk_uri_worker_map.c (873): Found an exact match '/examples=server1'
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] jk_handler::mod_jk.c (2459): Into handler jakarta-servlet worker=server1 r->proxyreq=0
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker server1
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] wc_maintain::jk_worker.c (339): Maintaining worker default
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] wc_maintain::jk_worker.c (339): Maintaining worker server1
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] wc_get_name_for_type::jk_worker.c (293): Found worker type 'ajp13'
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] init_ws_service::mod_jk.c (977): Service protocol=HTTP/1.1 method=GET ssl=false host=(null) addr=192.168.1.130 name=server.rens.intranet port=80 auth=(null) user=(null) laddr=192.168.1.130 raddr=192.168.1.130 uri=/examples
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_get_endpoint::jk_ajp_common.c (2977): acquired connection pool slot=0 after 0 retries
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (605): ajp marshaling done
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_service::jk_ajp_common.c (2283): processing server1 with 2 retries
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_send_request::jk_ajp_common.c (1501): (server1) all endpoints are disconnected.
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] jk_open_socket::jk_connect.c (452): socket TCP_NODELAY set to On
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] jk_open_socket::jk_connect.c (576): trying to connect socket 20 to 192.168.1.131:8009
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] jk_open_socket::jk_connect.c (602): socket 20 connected to 192.168.1.131:8009
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connect_to_endpoint::jk_ajp_common.c (931): Connected socket 20 to (192.168.1.131:8009)
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): sending to ajp13 pos=4 len=471 max=8192
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0000    12 34 01 D3 02 02 00 08 48 54 54 50 2F 31 2E 31  - .4......HTTP/1.1
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0010    00 00 09 2F 65 78 61 6D 70 6C 65 73 00 00 0D 31  - .../examples...1
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0020    39 32 2E 31 36 38 2E 31 2E 31 33 30 00 FF FF 00  - 92.168.1.130....
    [Fri Dec 11 15:48:42.718 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0030    14 73 65 72 76 65 72 2E 72 65 6E 73 2E 69 6E 74  - .server.rens.int
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0040    72 61 6E 65 74 00 00 50 00 00 0A A0 0B 00 14 73  - ranet..P.......s
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0050    65 72 76 65 72 2E 72 65 6E 73 2E 69 6E 74 72 61  - erver.rens.intra
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0060    6E 65 74 00 A0 0E 00 6F 4D 6F 7A 69 6C 6C 61 2F  - net....oMozilla/
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0070    35 2E 30 20 28 58 31 31 3B 20 55 3B 20 4C 69 6E  - 5.0.(X11;.U;.Lin
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0080    75 78 20 69 36 38 36 3B 20 65 6E 2D 55 53 3B 20  - ux.i686;.en-US;.
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0090    72 76 3A 31 2E 39 2E 30 2E 31 35 29 20 47 65 63  - rv:1.9.0.15).Gec
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00a0    6B 6F 2F 32 30 30 39 31 30 32 39 31 38 20 43 65  - ko/2009102918.Ce
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00b0    6E 74 4F 53 2F 33 2E 30 2E 31 35 2D 33 2E 65 6C  - ntOS/3.0.15-3.el
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00c0    35 2E 63 65 6E 74 6F 73 20 46 69 72 65 66 6F 78  - 5.centos.Firefox
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00d0    2F 33 2E 30 2E 31 35 00 A0 01 00 3F 74 65 78 74  - /3.0.15....?text
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00e0    2F 68 74 6D 6C 2C 61 70 70 6C 69 63 61 74 69 6F  - /html,applicatio
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 00f0    6E 2F 78 68 74 6D 6C 2B 78 6D 6C 2C 61 70 70 6C  - n/xhtml+xml,appl
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0100    69 63 61 74 69 6F 6E 2F 78 6D 6C 3B 71 3D 30 2E  - ication/xml;q=0.
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0110    39 2C 2A 2F 2A 3B 71 3D 30 2E 38 00 00 0F 41 63  - 9,*/*;q=0.8...Ac
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0120    63 65 70 74 2D 4C 61 6E 67 75 61 67 65 00 00 0E  - cept-Language...
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0130    65 6E 2D 75 73 2C 65 6E 3B 71 3D 30 2E 35 00 00  - en-us,en;q=0.5..
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0140    0F 41 63 63 65 70 74 2D 45 6E 63 6F 64 69 6E 67  - .Accept-Encoding
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0150    00 00 0C 67 7A 69 70 2C 64 65 66 6C 61 74 65 00  - ...gzip,deflate.
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0160    00 0E 41 63 63 65 70 74 2D 43 68 61 72 73 65 74  - ..Accept-Charset
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0170    00 00 1E 49 53 4F 2D 38 38 35 39 2D 31 2C 75 74  - ...ISO-8859-1,ut
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0180    66 2D 38 3B 71 3D 30 2E 37 2C 2A 3B 71 3D 30 2E  - f-8;q=0.7,*;q=0.
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 0190    37 00 00 0A 4B 65 65 70 2D 41 6C 69 76 65 00 00  - 7...Keep-Alive..
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01a0    03 33 30 30 00 A0 06 00 0A 6B 65 65 70 2D 61 6C  - .300.....keep-al
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01b0    69 76 65 00 00 0D 43 61 63 68 65 2D 43 6F 6E 74  - ive...Cache-Cont
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01c0    72 6F 6C 00 00 09 6D 61 78 2D 61 67 65 3D 30 00  - rol...max-age=0.
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1070): 01d0    A0 08 00 01 30 00 FF 00 00 00 00 00 00 00 00 00  - ....0...........
    [Fri Dec 11 15:48:42.719 2009] [14439:3085969168] [debug] ajp_send_request::jk_ajp_common.c (1560): (server1) request body to send 0 - request body to resend 0
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): received from ajp13 pos=0 len=19 max=8192
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0000    04 01 90 00 0B 42 61 64 20 52 65 71 75 65 73 74  - .....Bad.Request
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0010    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_unmarshal_response::jk_ajp_common.c (660): status = 400
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_unmarshal_response::jk_ajp_common.c (667): Number of headers is = 0
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): received from ajp13 pos=0 len=2 max=8192
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1259): 0000    05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................
    [Fri Dec 11 15:48:42.720 2009] [14439:3085969168] [debug] ajp_process_callback::jk_ajp_common.c (1846): AJP13 protocol: Reuse is OK
    [Fri Dec 11 15:48:42.754 2009] [14439:3085969168] [debug] ajp_reset_endpoint::jk_ajp_common.c (743): (server1) resetting endpoint with sd = 20 
    [Fri Dec 11 15:48:42.754 2009] [14439:3085969168] [debug] ajp_done::jk_ajp_common.c (2905): recycling connection pool slot=0 for worker server1
    [Fri Dec 11 15:48:42.754 2009] [14439:3085969168] [debug] jk_handler::mod_jk.c (2599): Service finished with status=400 for worker=server1

    Merci beaucoup pour ton aide !

  11. #11
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    Je viens de jeter un coup d'oeuil au log mais étant novice je ne vois pas trop où se situe le problème...

  12. #12
    Nouveau membre du Club
    Inscrit en
    Novembre 2009
    Messages
    36
    Détails du profil
    Informations forums :
    Inscription : Novembre 2009
    Messages : 36
    Points : 26
    Points
    26
    Par défaut
    J'ai tout réinstallé correctement et j'ai suivi le "how to" sur le site de tomcat

    => Tout fonctionne nickel !

    (Si on peut quand même trouver ce qui n'allait pas sur l'autre config ca m'arrangerait xD)

Discussions similaires

  1. JavaBridge - Serveur PHP et TOMCAT distant
    Par javabridge dans le forum BIRT
    Réponses: 1
    Dernier message: 29/06/2012, 11h28
  2. Création serveur web apache et tomcat
    Par fabou3377 dans le forum Réseau
    Réponses: 4
    Dernier message: 20/08/2008, 11h47
  3. Deploiement application sur serveur Tomcat distant
    Par jwyjoe dans le forum Tomcat et TomEE
    Réponses: 1
    Dernier message: 02/04/2008, 15h27
  4. [Info]serveur apache php + tomcat
    Par estampille dans le forum Tomcat et TomEE
    Réponses: 2
    Dernier message: 31/12/2005, 10h07
  5. Front End graphique pour GDB sous windows
    Par KORTA dans le forum GDB
    Réponses: 8
    Dernier message: 20/08/2003, 09h52

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo