掲示板

Single Sign On (SSO) beetwen tow machine

7年前 に Mr Tan によって更新されました。

Single Sign On (SSO) beetwen tow machine

New Member 投稿: 3 参加年月日: 16/11/02 最新の投稿
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
7年前 に David H Nebinger によって更新されました。

RE: Single Sign On (SSO) beetwen tow machine

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
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.
7年前 に Mr Tan によって更新されました。

RE: Single Sign On (SSO) beetwen tow machine

New Member 投稿: 3 参加年月日: 16/11/02 最新の投稿
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
7年前 に Jack Bakker によって更新されました。

RE: Single Sign On (SSO) beetwen tow machine

Liferay Master 投稿: 978 参加年月日: 10/01/03 最新の投稿
Liferay won't require authentication for a page that doesn't require authentication.
7年前 に Mr Tan によって更新されました。

RE: Single Sign On (SSO) beetwen tow machine

New Member 投稿: 3 参加年月日: 16/11/02 最新の投稿
Thanks all...