Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
On Mon, May 17, 2021 at 4:29 PM wrote: > > > On Mon, May 17, 2021 at 2:59 PM Eric Covener wrote: > >> >> >> On Mon, May 17, 2021 at 2:51 PM wrote: >> >>> I added this but it went to a different node instead of node 1 which is >>> msts1acnf001 >>> >>> ProxyPass /confluencenode1

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
On Mon, May 17, 2021 at 2:59 PM Eric Covener wrote: > > > On Mon, May 17, 2021 at 2:51 PM wrote: > >> I added this but it went to a different node instead of node 1 which is >> msts1acnf001 >> >> ProxyPass /confluencenode1 http://msts1acnf001:8098/confluence >> ProxyPassReverse /confluencenode1

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread Eric Covener
On Mon, May 17, 2021 at 2:51 PM wrote: > I added this but it went to a different node instead of node 1 which is > msts1acnf001 > > ProxyPass /confluencenode1 http://msts1acnf001:8098/confluence > ProxyPassReverse /confluencenode1 http://msts1acnf001:8098/confluence > > Any suggestion what am I

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
I added this but it went to a different node instead of node 1 which is msts1acnf001 ProxyPass /confluencenode1 http://msts1acnf001:8098/confluence ProxyPassReverse /confluencenode1 http://msts1acnf001:8098/confluence Any suggestion what am I doing wrong? Thanks, Asif On Mon, May 17, 2021

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread Daniel Ferradal
Yes, you need to use a different "source" path for the new directives, destination path can be different but otherwise, how can apache tell when to serve which? El lun., 17 may. 2021 20:08, escribió: > I do have this setup > > ProxyPass /confluence balancer://confluencedc/confluence >

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
I do have this setup ProxyPass /confluence balancer://confluencedc/confluence ProxyPassReverse /confluence balancer://confluencedc/confluence To access confluence node it needs to hit /confluence and that is already taken by the above config and maps to the context path. I am not sure if I have

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread Daniel Ferradal
Define a ProxyPass directive with a unique path pointing to one of the node you want to use Hint ProyPass /adminpath/ http://server1/admin/ El lun., 17 may. 2021 19:03, escribió: > Hi All, > > I have a load balancer setup like below > > > BalancerMember http://msts1acnf001:8098 route=1 >

[users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
Hi All, I have a load balancer setup like below BalancerMember http://msts1acnf001:8098 route=1 BalancerMember http://msts1bcnf002:8098 route=2 BalancerMember http://msts1ccnf003:8098 route=3 ProxySet stickysession=ROUTEID And each node running tomcat and has a context path setup How do I