在密钥库访问日志中

时间:2019-09-10 09:18:24

标签: keycloak

我希望能够将登录的用户登录到keycloak的访问日志中。我已经在standalone.xml文件中配置了访问日志,如下所示:

<host name="default-host" alias="localhost">
    <location name="/" handler="welcome-content"/>
    <access-log pattern="&quot;%t&quot;,&quot;%a&quot;,&quot;%{i,X-Request-ID}&quot;,&quot;%{i,X-Correlation-ID}&quot;,&quot;%s&quot;,&quot;%m&quot;,&quot;%U&quot;,&quot;%H&quot;,&quot;%b&quot;,&quot;%{i,user-agent}&quot;,&quot;%D&quot;,&quot;%u&quot;" worker="default" directory="${jboss.server.log.dir}" prefix="keycloak-access" suffix=".log" rotate="true"/>
     <http-invoker security-realm="ApplicationRealm"/>
 </host>

根据https://kb.novaordis.com/index.php/Undertow_WildFly_Subsystem_Configuration_-_access-log %u应该记录“已验证的远程用户”。

但是,日志将始终以“-”作为用户。

如何登录用户?

0 个答案:

没有答案