MaxKey/docs/slo.md
shimingxy 3e56ccfd61 s
2020-03-07 23:32:26 +08:00

51 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h2>单点注销-Single Logout</h2>
单点注销是指用户在一个系统退出后,其所能单点登录访问的所有系统都同时退出。单点注销主要是为提高安全性,避免用户忘记退出所有应用而造成信息的泄密。
IDP支持单点注销(SLO),即用户不仅仅从认证中心注销,同时也注销从认证中心访问的应用系统。
其实现方式也非常简单由于SSO和单点登录的应用都是分开的使用不同的域名只是通过认证中心在多个应用系统中传递身份和登录系统。因此首先注销单点登录应用然后修改每个应用系统都使用SSO的单点注销页面SSO的退出页面会将用户登录的Session注销掉。
<h2>单点注销配置</h2>
1,应用系统先完成本系统注销,注销完成后调用认证中心的单点注销地址。
2,修改应用单点注销完成后的地址为https://idpserver/logout,参数reLoginUrl为注销完成后访问地址。
<h2>单点注销机制</h2>
<table border="0" class="table table-striped table-bordered ">
<thead>
<th >序号</th><th>认证中心(ShortName)</th><th>单点登录应用(英文)</th><th>单点登录功能(中文名称)</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>退出</td>
<td>退出</td>
<td>失效</td>
</tr>
<tr>
<td>2</td>
<td>退出</td>
<td>不退出</td>
<td>失效</td>
</tr>
<tr>
<td>3</td>
<td>不退出</td>
<td>退出</td>
<td>正常</td>
</tr>
<tr>
<td>4</td>
<td>不退出</td>
<td>不退出</td>
<td>正常</td>
</tr>
</tbody>
</table>