I'm having problems getting infostore to work with a testuser. Whenever I log into the gui with the testuser and try to upload a file, it just hangs there and does nothing. I don't know what to check to make sure that the configuration is correct.
ps -aux |grep open-xchange
root 21637 0.0 0.0 7044 1856 ? S Sep27 0:00 su -s /bin/bash open-xchange -c /opt/open-xchange/sbin/open-xchange-groupware
111 21638 0.2 2.3 819956 215928 ? Ssl Sep27 22:43 /usr/bin/java -Xms512m -Xmx512m -XX:+UseConcMarkSweepGC -XX:NewSize=256m -XX:MaxNewSize=256m -XX:SurvivorRatio=6 -Djava.awt.headless=true -Dopenexchange.propdir=/opt/open-xchange/etc/groupware -Djava.util.logging.config.file=/opt/open-xchange/etc/groupware/file-logging.properties -jar /opt/open-xchange/bundles/org.eclipse.osgi_3.3.0.v20070530.jar -configuration file:/opt/open-xchange/etc/groupware/osgi
root 9485 0.1 1.0 332432 96272 ? Sl Oct01 4:04 /usr/bin/java -Xms100m -Xmx100m -XX:+UseConcMarkSweepGC -XX:NewSize=50m -XX:MaxNewSize=50m -XX:SurvivorRatio=6 -Dopenexchange.propdir=/opt/open-xchange/etc/admindaemon -Dconfigdir=/opt/open-xchange/etc/admindaemon -Djava.util.logging.config.file=/opt/open-xchange/etc/admindaemon/file-logging.properties -Duser.timezone=GMT -Dlibdir=/opt/open-xchange/bundles/com.openexchange.common/lib -jar /opt/open-xchange/bundles/org.eclipse.osgi_3.3.0.v20070530.jar -configuration file:/opt/open-xchange/etc/admindaemon/osgi/
admin and groupware servers are running
bundles installed
[root@manhattancenterstone sbin]# ./listbundles
bundlename: org.eclipse.osgi status: ACTIVE
bundlename: com.openexchange.authentication.database status: ACTIVE
bundlename: com.openexchange.axis2 status: ACTIVE
bundlename: com.openexchange.caching status: ACTIVE
bundlename: com.openexchange.charset status: ACTIVE
bundlename: com.openexchange.common status: ACTIVE
bundlename: com.openexchange.configjump.generic status: ACTIVE
bundlename: com.openexchange.configread status: ACTIVE
bundlename: com.openexchange.control status: ACTIVE
bundlename: com.openexchange.data.conversion.ical.ical4j status: ACTIVE
bundlename: com.openexchange.global status: ACTIVE
bundlename: com.openexchange.group.managerequest status: ACTIVE
bundlename: com.openexchange.groupware.settings.extensions status: ACTIVE
bundlename: com.openexchange.i18n status: ACTIVE
bundlename: com.openexchange.imap status: ACTIVE
bundlename: com.openexchange.mail.filter status: ACTIVE
bundlename: com.openexchange.management status: ACTIVE
bundlename: com.openexchange.monitoring status: ACTIVE
bundlename: com.openexchange.passwordchange.database status: ACTIVE
bundlename: com.openexchange.passwordchange.servlet status: ACTIVE
bundlename: com.openexchange.push.udp status: ACTIVE
bundlename: com.openexchange.resource.managerequest status: ACTIVE
bundlename: com.openexchange.server status: ACTIVE
bundlename: com.openexchange.sessiond status: ACTIVE
bundlename: com.openexchange.smtp status: ACTIVE
bundlename: com.openexchange.spamhandler.default status: ACTIVE
bundlename: javax.servlet status: ACTIVE
bundlename: net.freeutils.jcharset status: ACTIVE
bundlename: org.apache.commons.logging status: ACTIVE
bundlename: org.eclipse.equinox.event status: ACTIVE
bundlename: org.eclipse.osgi.services status: ACTIVE
Installation and configuration details
/opt/open-xchange/sbin/initconfigdb -a -i --configdb-pass=db_password
/opt/open-xchange/sbin/oxinstaller --servername=oxserver --configdb-pass=db_password \
--master-pass=admin_master_password
/opt/open-xchange/sbin/registerserver -n oxserver -A oxadminmaster -P admin_master_password
mkdir /var/opt/filestore
chown open-xchangepen-xchange /var/opt/filestore
vim /etc/httpd/conf.d/proxy_ajp.conf
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
<Proxy *>
Order deny,allow
allow from all
</Proxy>
ProxyPass /axis2 ajp://127.0.0.1:8009/axis2 smax=0 ttl=60 retry=5
ProxyPass /ajax ajp://127.0.0.1:8009/ajax smax=0 ttl=60 retry=5
ProxyPass /servlet ajp://127.0.0.1:8009/servlet smax=0 ttl=60 retry=5
ProxyPass /infostore ajp://127.0.0.1:8009/infostore smax=0 ttl=60 retry=5
vim /etc/httpd/conf.d/ox.conf
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/vhosts/websiteaddresshere/
<Directory /var/www/vhosts/websiteaddresshere//>
AllowOverride None
Order allow,deny
allow from all
RedirectMatch ^/$ /ox6/
</Directory>
ExpiresActive On
ExpiresByType image/gif "access plus 23 hours"
ExpiresByType image/png "access plus 23 hours"
ExpiresByType image/jpg "access plus 23 hours"
ExpiresByType image/jpeg "access plus 23 hours"
ExpiresByType text/javascript "access plus 23 hours"
ExpiresByType text/css "access plus 23 hours"
ExpiresByType text/html "access plus 23 hours"
ExpiresByType application/x-javascript "access plus 23 hours"
<Files ~ "\.(js|css|gif|jpe?g|png)$">
Header append Cache-Control "public"
</Files>
DeflateFilterNote ratio
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSI[E]*!no-gzip*!gzip-only-text/html
Header append Vary User-Agent env=!dont-vary
</VirtualHost>
What other information should I post so you guys know what the problem is ?
ps -aux |grep open-xchange
root 21637 0.0 0.0 7044 1856 ? S Sep27 0:00 su -s /bin/bash open-xchange -c /opt/open-xchange/sbin/open-xchange-groupware
111 21638 0.2 2.3 819956 215928 ? Ssl Sep27 22:43 /usr/bin/java -Xms512m -Xmx512m -XX:+UseConcMarkSweepGC -XX:NewSize=256m -XX:MaxNewSize=256m -XX:SurvivorRatio=6 -Djava.awt.headless=true -Dopenexchange.propdir=/opt/open-xchange/etc/groupware -Djava.util.logging.config.file=/opt/open-xchange/etc/groupware/file-logging.properties -jar /opt/open-xchange/bundles/org.eclipse.osgi_3.3.0.v20070530.jar -configuration file:/opt/open-xchange/etc/groupware/osgi
root 9485 0.1 1.0 332432 96272 ? Sl Oct01 4:04 /usr/bin/java -Xms100m -Xmx100m -XX:+UseConcMarkSweepGC -XX:NewSize=50m -XX:MaxNewSize=50m -XX:SurvivorRatio=6 -Dopenexchange.propdir=/opt/open-xchange/etc/admindaemon -Dconfigdir=/opt/open-xchange/etc/admindaemon -Djava.util.logging.config.file=/opt/open-xchange/etc/admindaemon/file-logging.properties -Duser.timezone=GMT -Dlibdir=/opt/open-xchange/bundles/com.openexchange.common/lib -jar /opt/open-xchange/bundles/org.eclipse.osgi_3.3.0.v20070530.jar -configuration file:/opt/open-xchange/etc/admindaemon/osgi/
admin and groupware servers are running
bundles installed
[root@manhattancenterstone sbin]# ./listbundles
bundlename: org.eclipse.osgi status: ACTIVE
bundlename: com.openexchange.authentication.database status: ACTIVE
bundlename: com.openexchange.axis2 status: ACTIVE
bundlename: com.openexchange.caching status: ACTIVE
bundlename: com.openexchange.charset status: ACTIVE
bundlename: com.openexchange.common status: ACTIVE
bundlename: com.openexchange.configjump.generic status: ACTIVE
bundlename: com.openexchange.configread status: ACTIVE
bundlename: com.openexchange.control status: ACTIVE
bundlename: com.openexchange.data.conversion.ical.ical4j status: ACTIVE
bundlename: com.openexchange.global status: ACTIVE
bundlename: com.openexchange.group.managerequest status: ACTIVE
bundlename: com.openexchange.groupware.settings.extensions status: ACTIVE
bundlename: com.openexchange.i18n status: ACTIVE
bundlename: com.openexchange.imap status: ACTIVE
bundlename: com.openexchange.mail.filter status: ACTIVE
bundlename: com.openexchange.management status: ACTIVE
bundlename: com.openexchange.monitoring status: ACTIVE
bundlename: com.openexchange.passwordchange.database status: ACTIVE
bundlename: com.openexchange.passwordchange.servlet status: ACTIVE
bundlename: com.openexchange.push.udp status: ACTIVE
bundlename: com.openexchange.resource.managerequest status: ACTIVE
bundlename: com.openexchange.server status: ACTIVE
bundlename: com.openexchange.sessiond status: ACTIVE
bundlename: com.openexchange.smtp status: ACTIVE
bundlename: com.openexchange.spamhandler.default status: ACTIVE
bundlename: javax.servlet status: ACTIVE
bundlename: net.freeutils.jcharset status: ACTIVE
bundlename: org.apache.commons.logging status: ACTIVE
bundlename: org.eclipse.equinox.event status: ACTIVE
bundlename: org.eclipse.osgi.services status: ACTIVE
Installation and configuration details
/opt/open-xchange/sbin/initconfigdb -a -i --configdb-pass=db_password
/opt/open-xchange/sbin/oxinstaller --servername=oxserver --configdb-pass=db_password \
--master-pass=admin_master_password
/opt/open-xchange/sbin/registerserver -n oxserver -A oxadminmaster -P admin_master_password
mkdir /var/opt/filestore
chown open-xchangepen-xchange /var/opt/filestore
vim /etc/httpd/conf.d/proxy_ajp.conf
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
<Proxy *>
Order deny,allow
allow from all
</Proxy>
ProxyPass /axis2 ajp://127.0.0.1:8009/axis2 smax=0 ttl=60 retry=5
ProxyPass /ajax ajp://127.0.0.1:8009/ajax smax=0 ttl=60 retry=5
ProxyPass /servlet ajp://127.0.0.1:8009/servlet smax=0 ttl=60 retry=5
ProxyPass /infostore ajp://127.0.0.1:8009/infostore smax=0 ttl=60 retry=5
vim /etc/httpd/conf.d/ox.conf
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/vhosts/websiteaddresshere/
<Directory /var/www/vhosts/websiteaddresshere//>
AllowOverride None
Order allow,deny
allow from all
RedirectMatch ^/$ /ox6/
</Directory>
ExpiresActive On
ExpiresByType image/gif "access plus 23 hours"
ExpiresByType image/png "access plus 23 hours"
ExpiresByType image/jpg "access plus 23 hours"
ExpiresByType image/jpeg "access plus 23 hours"
ExpiresByType text/javascript "access plus 23 hours"
ExpiresByType text/css "access plus 23 hours"
ExpiresByType text/html "access plus 23 hours"
ExpiresByType application/x-javascript "access plus 23 hours"
<Files ~ "\.(js|css|gif|jpe?g|png)$">
Header append Cache-Control "public"
</Files>
DeflateFilterNote ratio
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSI[E]*!no-gzip*!gzip-only-text/html
Header append Vary User-Agent env=!dont-vary
</VirtualHost>
What other information should I post so you guys know what the problem is ?
Comment