View the Login UI Success and Failure
search cancel

View the Login UI Success and Failure

book

Article ID: 380620

calendar_today

Updated On:

Products

CA Release Automation - Release Operations Center (Nolio) CA Release Automation - DataManagement Server (Nolio)

Issue/Introduction

How to view the UI login in Success and in Error ? Does exist an audit for this ?

Environment

Release Automation - All Versions

Resolution

No there is no audit of Login events but Success and Failed UI login could be seen in nolio_dm_all.*.log logs of the NAC
 
Following command could be used to find the login events :
 
On Linux :
cd <ra_home>/logs
grep -i 'com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler' nolio_dm_all*.log

On Windows :
cd <ra_home>\logs
findstr /I "com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler" nolio_dm_all*.log
 

 

Examples :
  • Success Login :
    2024-10-21T12:05:21.385Z [http-nio-8080-exec-8] INFO  (com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler:36) - Successfully logged-in as <username>@<adname.com>
  • Failed Login :
    2024-10-21T12:04:19.754Z [http-nio-8080-exec-7] WARN  (com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler:98) - Failed to login as <username>@<adname.com>
The lines above could give some details about the failure
 
Examples :
  • User could not be found in AD :
    2024-10-21T12:04:19.745Z [http-nio-8080-exec-7] DEBUG (org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider:136) - Failed to find user '<username>@<adname.com>'

    2024-10-21T12:04:19.754Z [http-nio-8080-exec-7] WARN  (com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler:98) - Failed to login as <username>@<adname.com
  • Wrong password :
    2024-10-21T12:06:20.479Z [http-nio-8080-exec-2] DEBUG (com.nolio.platform.server.dataservices.services.auth.NolioUserDetailsServiceImpl:190) - failed to authenticate user <username>@<adname.com> with DirectoryServerId: 1

    2024-10-21T12:06:20.486Z [http-nio-8080-exec-2] WARN  (com.nolio.platform.server.dataservices.services.auth.providers.PostAuthenticationEventHandler:98) - Failed to login as <username>@<adname.com>