Fórum

Single Sign On (SSO) beetwen tow machine

Mr Tan, modificado 7 Anos atrás.

Single Sign On (SSO) beetwen tow machine

New Member Postagens: 3 Data de Entrada: 02/11/16 Postagens Recentes
Hi!!!

I configure liferay + cas

After logging into the server liferay 1 success

New tab -> call link liferay server 2 (http://server2:8080): can’t auto login

But call (http://server2:8080/group/control_panel): auto login success

How to call (http://server2:8080) auto login

Please support me, thanks.
thumbnail
David H Nebinger, modificado 7 Anos atrás.

RE: Single Sign On (SSO) beetwen tow machine

Liferay Legend Postagens: 14919 Data de Entrada: 02/09/06 Postagens Recentes
Well your configuration is all wrong.

First, your two Liferay nodes should form a proper cluster and be fronted by a load balancer.

From the browser's perspective, the CAS tokens are tied to the main site URL, not "node 1" or "node 2".

On the back end, the node will redirect to CAS for authentication and the incoming CAS token cookies are tied to the main site URL so they are visible in both nodes.

In your current configuration, CAS has approved the token based on the URL for node 1, but this is not going to be the same URL on node 2 so the CAS token cookie will not be handed to node 2.

Now if these are not Liferay nodes in a cluster, then I think your configuration is still off. The CAS token cookie must be bound to a less specific URL such as http://example.com so it would be visible to all subdomains; if you've bound the CAS token cookie to http://node1.example.com then the cookie cannot be passed to http://node2.example.com because of the different domain.
Mr Tan, modificado 7 Anos atrás.

RE: Single Sign On (SSO) beetwen tow machine

New Member Postagens: 3 Data de Entrada: 02/11/16 Postagens Recentes
David H Nebinger:

Now if these are not Liferay nodes in a cluster, then I think your configuration is still off. The CAS token cookie must be bound to a less specific URL such as http://example.com so it would be visible to all subdomains; if you've bound the CAS token cookie to http://node1.example.com then the cookie cannot be passed to http://node2.example.com because of the different domain.


Yes, i don't config Liferay cluster.

But call liferay page private auto login success, i think page private request authen -> liferay auto call cas authen.

How to config CAS when i don't config Liferay cluster.

Thanks!
thumbnail
Jack Bakker, modificado 7 Anos atrás.

RE: Single Sign On (SSO) beetwen tow machine

Liferay Master Postagens: 978 Data de Entrada: 03/01/10 Postagens Recentes
Liferay won't require authentication for a page that doesn't require authentication.
Mr Tan, modificado 7 Anos atrás.

RE: Single Sign On (SSO) beetwen tow machine

New Member Postagens: 3 Data de Entrada: 02/11/16 Postagens Recentes
Thanks all...