Hi,
I have installed open-xchange using the community installer on Ubuntu 7.04 and all seemed to go pretty well once I got the .sh getting stable versions of some parts from the cvs repository.
When I try to log in though everything seems to go well until the "Loading: bar gets to 90% saying "Initialization ... Please wait ...
I have tried to make /etc/apache2/conf.d/ox.conf look like the one in the wiki and when I look at /var/log/open-xchange/open-xchange.log.0 I keep getting the following types of logs repeating:
and one of these in /var/log/apache2/mod_jk.log for each time I try to view the page:
My worker.properties file is like this:
while my /etc/apache2/conf.d/ox.conf looks like this:
From the forum I get the feeling it's a mod_jk problem, but I'm not sure. Any ideas?
I have installed open-xchange using the community installer on Ubuntu 7.04 and all seemed to go pretty well once I got the .sh getting stable versions of some parts from the cvs repository.
When I try to log in though everything seems to go well until the "Loading: bar gets to 90% saying "Initialization ... Please wait ...
I have tried to make /etc/apache2/conf.d/ox.conf look like the one in the wiki and when I look at /var/log/open-xchange/open-xchange.log.0 I keep getting the following types of logs repeating:
Code:
Dec 27, 2007 6:15:36 PM com.openexchange.database.Pools run FINEST: Starting cleaner run. Dec 27, 2007 6:15:36 PM com.openexchange.database.Pools run FINEST: Cleaner run ending. Dec 27, 2007 6:15:36 PM com.openexchange.pooling.ReentrantLockPool run FINEST: Starting cleaner run. Dec 27, 2007 6:15:36 PM com.openexchange.pooling.ReentrantLockPool run FINEST: Clean run ending. Time: 0 Dec 27, 2007 6:15:37 PM com.openexchange.push.udp.PushOutputQueue action FINE: get push objects from queue: 0 Dec 27, 2007 6:15:38 PM com.openexchange.tools.ajp13.AJPv13Watcher$Task run FINEST: +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ AJP-Watcher's run done: Waiting=0 Running=0 Exceeded=0 Total=100 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Code:
[Thu Dec 27 18:08:19 2007] ajp13_worker 192.168.6.131 0.110397 [Thu Dec 27 18:08:19 2007] ajp13_worker 192.168.6.131 0.003976
Code:
workers.java_home=/usr/lib/jvm/java-1.5.0-sun ps=/ worker.list=ajp13_worker worker.ajp13_worker.port=8009 worker.ajp13_worker.host=localhost worker.ajp13_worker.type=ajp13
Code:
<IfModule mod_jk.c> JkWorkersFile /etc/libapache2-mod-jk/workers.properties JkLogFile /var/log/apache2/mod_jk.log JkLogLevel error JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " JkRequestLogFormat "%w %V %T" JkMount /ajax/* ajp13_worker JkMount /servlet/* ajp13_worker JkMount /infostore ajp13_worker JkMount /infostore/ ajp13_worker JkMount /infostore/* ajp13_worker JkOptions +ForwardURICompatUnparsed </IfModule>
Comment