I am stewchicken24 , walterwang is another my login name

Below are my conf file
my apache server even doesnot function properly . 
it will return 500 error when i browse http://<apache server ip>
are there any mistakes coming from my conf file?

######## httpd.conf ########
# Include mod_jk?s
# specific configuration file
Include conf/mod-jk.conf


########## mod_jk.conf##########
# Load mod_jk module.
# Specify the filename of the mod_jk
# lib you?ve downloaded and installed in the previous section
LoadModule jk_module modules/mod_jk.so
# Where to find workers.properties
JkWorkersFile conf/workers.properties
# Where to put jk logs
JkLogFile logs/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel info
# Select the log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# JkOptions indicate to send SSL KEY SIZE,
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
# JkRequestLogFormat set the request format
JkRequestLogFormat "%w %V %T"
JkMount /* loadbalancer
# if you wanted to only load-balance a sub-context, you could
# map the module differently, such as:
# JkMount /myContext/* loadbalancer

#Mount your applications
JkMount / node1
JkMount /viewserver node1
JkMount / node2
JkMount /viewserver node2
#########workers.properties############ 
    # Define list of workers that will be used
    # for mapping requests
    worker.list=loadbalancer,status
    # Define Node1
    worker.node1.port=8009
    worker.node1.host=144.194.192.196
    worker.node1.type=ajp13
    worker.node1.lbfactor=1
    #worker.node1.local_worker=1 (1)
    worker.node1.cachesize=10

    # Define Node2
    worker.node2.port=8009
    worker.node2.host=144.194.192.203
    worker.node2.type=ajp13
    worker.node2.lbfactor=1
    #worker.node2.local_worker=1 (1)
    worker.node2.cachesize=10

    # Load-balancing behaviour
    worker.loadbalancer.type=lb
    worker.loadbalancer.balance_workers=node1, node2
    worker.loadbalancer.sticky_session=1
    #worker.loadbalancer.local_worker_only=1
    # Comment local_worker to do load balancing and fail over, if its not 
commented out its failsafe only
    worker.list=loadbalancer
############uriworkermap.properties#################
    #

    # Mount the Servlet context to the ajp13 worker
    /jmx-console=loadbalancer
    /jmx-console/*=loadbalancer
~



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905697#3905697

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905697


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to