Link to home
Start Free TrialLog in
Avatar of Ludwig Diehl
Ludwig DiehlFlag for Peru

asked on

Wildfly & mod_cluster issues

Hello!. I am trying to figure out what the the problem with my configuration is. I have apache 2.4.29 with mod_cluster configured like this:

<IfModule manager_module>
	Listen 172.16.10.60:10001
</IfModule>

<VirtualHost *:80>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
<VirtualHost *:10001>
	<Directory />
    	Require all granted
    </Directory>
    ServerName myservername.com
    <IfModule manager_module>
    	ManagerBalancerName innovateperu
        AllowDisplay On
        KeepAliveTimeout 300
        MaxKeepAliveRequests 0
        ServerAdvertise on 172.16.10.60:10001
        AdvertiseFrequency 5
        AdvertiseGroup 224.0.1.100:23366
        EnableMCPMReceive On
        <Location /manager>
        	SetHandler mod_cluster-manager
            Require all granted
        </Location>
        <Location />
        	Allow from all
        </Location>    
    </IfModule>
</VirtualHost>

Open in new window


My nodes are configured with wildfly 10.1.0.Final

I have tried this:

  1. Access the context using the node address. It works
[list=2]Access the context using the load balancer address. It works partially. This is weird because I can see the login form of my project, I can event log in however when I try to access another war from the menu, I receivethis error "Gateway timeout". [/list]

Does anyone have a clue?
ASKER CERTIFIED SOLUTION
Avatar of David Favor
David Favor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Poster has stopped posting.