I've updated yesterday to 7.2.2. but now i get strange 404-Errors if i try to access OxAppsuite
i have apache 2.4 running. and balancer seems not start up anymore.
my configs
netstat show me
and here a direct call from shell
</body>
</html>[/HTML][/CODE]
thank you for patience! hope you can help me
Connection error.
The service is not available right now.
The service is not available right now.
Code:
service apache2 start
Code:
[Tue Aug 06 17:01:50.203412 2013] [proxy_balancer:debug] [pid 13043] mod_proxy_balancer.c(791): AH01178: Doing balancers create: 544, 1 (6) [Tue Aug 06 17:01:50.203532 2013] [proxy_balancer:debug] [pid 13043] mod_proxy_balancer.c(861): AH01184: Doing workers create: balancer://oxcluster (p7179deb_oxcluster), 512, 1 [0] [Tue Aug 06 17:01:50.204556 2013] [proxy_balancer:debug] [pid 13047] mod_proxy_balancer.c(121): AH01158: Looking at balancer://oxcluster -> http://localhost:8080 initialized?
Code:
>> server.properties com.openexchange.connector.networkListenerHost=127.0.0.1 com.openexchange.connector.networkListenerPort=8080 com.openexchange.server.backendRoute=OX1 com.openexchange.UIWebPath=/appsuite/ com.openexchange.dispatcher.prefix=/ajax/
Code:
>> grizzly.properties com.openexchange.http.grizzly.hasCometEnabled=true com.openexchange.http.grizzly.hasWebSocketsEnabled=true com.openexchange.http.grizzly.hasJMXEnabled=true com.openexchange.http.grizzly.hasAJPEnabled=false com.openexchange.http.grizzly.ping=PROCESSING com.openexchange.http.grizzly.pingDelay=90000 com.openexchange.http.grizzly.maxPingCount=9
Code:
>> proxy_http.conf
##################################################
<Location /webservices>
Require host 127.0.0.1
</Location>
# the old path is kept for compatibility reasons
<Location /servlet/axis2/services>
# restrict access to the soap provisioning API
Require host 127.0.0.1
</Location>
<IfModule mod_proxy_http.c>
ProxyRequests Off
ProxyPreserveHost On
<Proxy balancer://oxcluster>
Require all granted
BalancerMember http://127.0.0.1:8080 timeout=100 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=On
SetEnv proxy-initial-not-pooled
SetEnv proxy-sendchunked
</Proxy>
# Microsoft recommends a minimum timeout value of 15 minutes for eas connections
<Proxy balancer://eas_oxcluster>
Require all granted
BalancerMember http://127.0.0.1:8080 timeout=1800 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=On
SetEnv proxy-initial-not-pooled
SetEnv proxy-sendchunked
</Proxy>
# OX AppSuite frontend
<Proxy /appsuite/api>
ProxyPass balancer://oxcluster/ajax
</Proxy>
# OX frontend
<Proxy /ajax>
ProxyPass balancer://oxcluster/ajax
</Proxy>
<Proxy /servlet>
ProxyPass balancer://oxcluster/servlet
</Proxy>
<Proxy /infostore>
ProxyPass balancer://oxcluster/infostore
</Proxy>
<Proxy /publications>
ProxyPass balancer://oxcluster/publications
</Proxy>
# USM
<Proxy /usm-json>
ProxyPass balancer://oxcluster/usm-json
</Proxy>
# SOAP
<Proxy /webservices>
ProxyPass balancer://oxcluster/webservices
</Proxy>
<Proxy /realtime>
ProxyPass balancer://oxcluster/realtime
</Proxy>
# OXtender/EAS specific proxy container with higher timeout
<Proxy /Microsoft-Server-ActiveSync>
ProxyPass balancer://eas_oxcluster/Microsoft-Server-ActiveSync
</Proxy>
</IfModule>
Code:
>> vhost.conf
<VirtualHost 111.111.111.111:80>
ServerName ox.host.de
ServerAdmin postmaster@host.de
DocumentRoot /var/www/
<Directory /var/www/>
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride None
Require all granted
RedirectMatch ^/$ /appsuite/
</Directory>
<Directory /var/www/appsuite>
Options None +SymLinksIfOwnerMatch
AllowOverride Indexes FileInfo
</Directory>
RequestHeader set X-Forwarded-Proto "https"
ErrorLog /var/log/apache2/sites/ox-host-error.log
CustomLog /var/log/apache2/sites/ox-host-access.log combined
</VirtualHost>
Code:
$ netstat -ltpn | grep 8080 tcp6 0 0 127.0.0.1:8080 :::* LISTEN 20089/java
Code:
$ curl -iL http://127.0.0.1:8080/appsuite/api/apps/manifests?action=config
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Wed, 07 Aug 2013 07:41:29 GMT
Content-Length: 1087
[HTML]<html>
<head>
<title>Grizzly/2.2.22</title>
<style>
<!--div.header {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#003300;
font-size:22px;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;border-top-right-radius: 10px;padding-left: 5px}
div.body {font-family:Tahoma,Arial,sans-serif;color:black;
background-color:#FFFFCC;font-size:16px;padding-top:10px;padding-bottom:10px;padding-left:10px}
div.footer {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#666633;font-size:14px;
-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;padding-left: 5px}
BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;}
B {font-family:Tahoma,Arial,sans-serif;color:black;}
A {color : black;}
HR {color : #999966;}-->
</style>
</head>
<body>
<div class="header">
Not Found
</div>
<div class="body">
Resource identified by path '/appsuite/api/apps/manifests', does not
exist.
</div>
<div class="footer">
Grizzly/2.2.22
</div>[/HTML]
</html>[/HTML][/CODE]
thank you for patience! hope you can help me
Comment