Login Audit | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by kautuk_sahni

Hi 

I am not sure, but i guess there is no OOTB for this.

You can definitely achieve this from access.log.

     access.log

  • All access requests to AEM WCM and the repository are registered here.

Example:- 

Login time log like this:

admin 20/May/2016:12:18:39 +0530 "GET /index.html HTTP/1.1" 302 - "http://localhost:4502/libs/granite/core/content/login.html?resource=%2F&$$login$$=%24%24login%24%24&j_reason=unknown&j_reason_code=unknown" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36"

 

Logout log:

0:0:0:0:0:0:0:1 - admin 20/May/2016:12:19:20 +0530 "GET /system/sling/logout.html HTTP/1.1" 302 - "http://localhost:4502/projects.html/content/projects" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36"
0:0:0:0:0:0:0:1 - anonymous 20/May/2016:12:19:20 +0530 "GET 

Parse the logs to do the needful.

 

Thanks and Regards

Kautuk Sahni

1 reply

kautuk_sahni
kautuk_sahniAccepted solution
Employee
May 20, 2016

Hi 

I am not sure, but i guess there is no OOTB for this.

You can definitely achieve this from access.log.

     access.log

  • All access requests to AEM WCM and the repository are registered here.

Example:- 

Login time log like this:

admin 20/May/2016:12:18:39 +0530 "GET /index.html HTTP/1.1" 302 - "http://localhost:4502/libs/granite/core/content/login.html?resource=%2F&$$login$$=%24%24login%24%24&j_reason=unknown&j_reason_code=unknown" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36"

 

Logout log:

0:0:0:0:0:0:0:1 - admin 20/May/2016:12:19:20 +0530 "GET /system/sling/logout.html HTTP/1.1" 302 - "http://localhost:4502/projects.html/content/projects" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36"
0:0:0:0:0:0:0:1 - anonymous 20/May/2016:12:19:20 +0530 "GET 

Parse the logs to do the needful.

 

Thanks and Regards

Kautuk Sahni

Kautuk Sahni