Hello,
for testing reasons I've got a Debian 8 Server (with Apache 2.4 and OX incl. Guard) besides my productive Server, that is running with Ubuntu 12.04 (Apache 2.2).
The Installation of OX was in both cases done by an Install Script, so there should be no miss configuration happened.
Everything works fine on both systems, but Guard on Debian. I can't change the security credentials. Guard suggests, that everything is ok, but I can't give in my initial password etc. It seems, as if the initial user setup is already complete, but it isn't.
As everything else is the same, can Apache (resp. the "proxy_http.conf") cause the trouble?
Here is the content of my /etc/apache2/conf-available:
Please help - I've got no further idea. If additional information is required, please post.
Many thanks in advance.
for testing reasons I've got a Debian 8 Server (with Apache 2.4 and OX incl. Guard) besides my productive Server, that is running with Ubuntu 12.04 (Apache 2.2).
The Installation of OX was in both cases done by an Install Script, so there should be no miss configuration happened.
Everything works fine on both systems, but Guard on Debian. I can't change the security credentials. Guard suggests, that everything is ok, but I can't give in my initial password etc. It seems, as if the initial user setup is already complete, but it isn't.
As everything else is the same, can Apache (resp. the "proxy_http.conf") cause the trouble?
Here is the content of my /etc/apache2/conf-available:
Code:
<Location /webservices> Require all denied Allow from 127.0.0.1 </Location> <Location /servlet/axis2/services> Require all denied Allow from 127.0.0.1 </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 On ProxyPreserveHost Off <Proxy balancer://oxcluster> Require all granted # multiple server setups need to have the hostname inserted instead localhost BalancerMember http://localhost:8009 timeout=100 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> # Microsoft recommends a minimum timeout value of 15 minutes for eas connections <Proxy balancer://eas_oxcluster> Require all granted # multiple server setups need to have the hostname inserted instead localhost BalancerMember http://localhost:8009 timeout=1800 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1 # Enable and maybe add additional hosts running OX here # BalancerMember http://oxhost2:8009 timeout=1800 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> # <Proxy balancer://oxguard> Require all granted BalancerMember http://localhost:8080/oxguard timeout=1800 smax=0 ttl=60 retry=60 loadfactor=100 route=OX1 ProxySet stickysession=JSESSIONID|jsessionid scolonpathdelim=ON SetEnv proxy-initial-not-pooled SetEnv proxy-sendchunked </Proxy> ProxyPass /appsuite/api/oxguard balancer://oxguard # OX AppSuite frontend <Location /appsuite/api> ProxyPass balancer://oxcluster/ajax </Location> # 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>
Many thanks in advance.
Comment