Chris Egolf wrote:
Lionel Farbos wrote:

- I've not found any documentation on the status worker (and web
page) and the ability to reload jk configuration without a reload of
apache. Can you tell me more about these new features (or give me a
link I missed) ?


I second this request.

Yes, seems we simply did not catch the time to finish all the docs. I'll try to write something ASP and put it onto: http://jakarta.apache.org/tomcat/connectors-doc/

For now:

To be able to use the new load balancer manager for mod_jk you
will need to use the shared memory if using non-windows operating
system. Also the status worker will show and be able to manage
only load balancer workers and its members.

Inside your httpd.conf add the following directive to the rest
of mod_jk directives:

<IfModule mod_jk.c>
...
JkShmFile logs/mod_jk.shm
...
</IfModule>
...
<Location /jkstatus/>
    JkMount status
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1
</Location>

Inside your workers.properties you will need to add the
status worker. The status worker needs to be present inside
worker.list, like any other worker that has uri mapping.

# workers.properties
...
worker.list=status,...
...
worker.status.type=status
# You can add your own custom .css
# Uncoment and use the apache manual stylesheet
# worker.status.css=/manual/style/css/manual.css

Now open your browser to the localhost/jkstatus/ and
enjoy :).


Hope this helps a bit.

Regards,
Mladen.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to