bekomme jatzt aber immer bad Gateway
<Location /webservices>
# Please note that the servlet path to the soap API has changed:
# restrict access to the soap provisioning API
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
# you might add more ip addresses / networks here
# Allow from 192.168 10 172.16
</Location>
# the old path is kept for compatibility reasons
<Location /servlet/axis2/services>
# restrict access to the soap provisioning API
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
# you might add more ip addresses / networks here
# Allow from 192.168 10 172.16
</Location>
<IfModule mod_proxy_http.c>
ProxyRequests Off
# When enabled, this option will pass the Host: line from the incoming request to the proxied host.
ProxyPreserveHost OFF
<Proxy balancer://oxcluster>
Order deny,allow
Allow from all
# multiple server setups need to have the hostname inserted instead localhost
BalancerMember http://localhost:8009 timeout=600 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
# Enable and maybe add additional hosts running OX here
# BalancerMember http://oxhost2:8009 timeout=100 smax=0 ttl=60 retry=60 loadfactor=50 route=OX2
ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=On
SetEnv proxy-initial-not-pooled
SetEnv proxy-sendchunked
</Proxy>
# Define another Proxy Container with different timeout for the sync clients. Microsoft recommends a minimum value of 15 minutes.
# Setting the value lower than the one defined as com.openexchange.usm.eas.ping.max_heartbeat in eas.properties will lead to connection
# timeouts for clients. See http://support.microsoft.com/?kbid=905013 for additional information.
#
# NOTE for Apache versions < 2.4:
# When using a single node system or using BalancerMembers that are assigned to other balancers please add a second hostname for that
# BalancerMember's IP so Apache can treat it as additional BalancerMember with a different timeout.
#
# Example from /etc/hosts: 127.0.0.1 localhost localhost_sync
#
# Alternatively select one or more hosts of your cluster to be restricted to handle only eas/usm requests
<Proxy balancer://eas_oxcluster>
Order deny,allow
Allow from all
# multiple server setups need to have the hostname inserted instead localhost
BalancerMember http://localhost_sync:8009 timeout=1900 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
# Enable and maybe add additional hosts running OX here
# BalancerMember http://oxhost2:8009 timeout=1900 smax=0 ttl=60 retry=60 loadfactor=50 route=OX2
ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=On
SetEnv proxy-initial-not-pooled
SetEnv proxy-sendchunked
</Proxy>
# OX frontend
<Location /ajax>
ProxyPass balancer://oxcluster/ajax
</Location>
<Location /servlet>
ProxyPass balancer://oxcluster/servlet
</Location>
<Location /infostore>
ProxyPass balancer://oxcluster/infostore
</Location>
<Location /publications>
ProxyPass balancer://oxcluster/publications
</Location>
# USM
<Location /usm-json>
ProxyPass balancer://oxcluster/usm-json
</Location>
# SOAP
<Location /webservices>
ProxyPass balancer://oxcluster/webservices
</Location>
<Location /realtime>
ProxyPass balancer://oxcluster/realtime
</Location>
# OXtender/EAS specific proxy container with higher timeout
<Location /Microsoft-Server-ActiveSync>
ProxyPass balancer://eas_oxcluster/Microsoft-Server-ActiveSync
</Location>
</IfModule>
fehler Apache (er läuft aber)
Wed May 13 17:59:46.038514 2015] [proxy_http:error] [pid 4546] (104)Connection reset by peer: [client 192.168.0.51:54319] AH01102: error reading status line from remote server localhost:8009
[Wed May 13 17:59:46.038597 2015] [proxy:error] [pid 4546] [client 192.168.0.51:54319] AH00898: Error reading from remote server returned by /ajax/login
[Wed May 13 17:59:50.685511 2015] [proxy_http:error] [pid 4546] (104)Connection reset by peer: [client 192.168.0.51:54319] AH01102: error reading status line from remote server localhost:8009
[Wed May 13 17:59:50.689923 2015] [proxy_http:error] [pid 4547] (104)Connection reset by peer: [client 192.168.0.51:54320] AH01102: error reading status line from remote server localhost:8009
aber laut netstat ist der port offen
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 *:ssh *:* LISTEN 1421/sshd
tcp 0 0 *:smtp *:* LISTEN 1975/master
tcp 0 0 *:ldaps *:* LISTEN 1507/slapd
tcp 0 0 *:ldap *:* LISTEN 1507/slapd
tcp 0 0 localhost:10024 *:* LISTEN 1890/amavisd (maste
tcp 0 0 localhost:10025 *:* LISTEN 1975/master
tcp 0 0 localhost:dyna-access *:* LISTEN 1881/clamd
tcp 0 0 *

tcp 0 0 *:imap *:* LISTEN 1451/master
tcp 0 0 *:cisco-sccp *:* LISTEN 1451/master
tcp 0 0 *:ssh *:* LISTEN 1421/sshd
tcp 0 0 *:smtp *:* LISTEN 1975/master
tcp 0 0 *:ldaps *:* LISTEN 1507/slapd
tcp 0 0 *:57090 *:* LISTEN 8115/java
tcp 0 0 localhost:5701 *:* LISTEN 8115/java
tcp 0 0 *:ldap *:* LISTEN 1507/slapd
tcp 0 0 localhost:10024 *:* LISTEN 1890/amavisd (maste
tcp 0 0 localhost:8009 *:* LISTEN 8115/java
tcp 0 0 localhost:10025 *:* LISTEN 1975/master
tcp 0 0 *:mysql *:* LISTEN 1723/mysqld
tcp 0 0 localhost:rmiregistry *:* LISTEN 8115/java
tcp 0 0 *

tcp 0 0 localhost:distinct *:* LISTEN 8115/java
tcp 0 0 *:imap *:* LISTEN 1451/master
tcp 0 0 *:www-http *:* LISTEN 7359/httpd2-prefork
tcp 0 0 *:cisco-sccp *:* LISTEN 1451/master
udp 0 0 *:50528 *:* 8115/java
Leave a comment: