I want to check someone login webtop times one years
How can I do
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
I think the unsuccessful login is captured in that file. This will mean that you will need to open and read those files as well if you want differentiate between successful and unsucessful logins.
If you dont have audit management already configured, you cant get info for the past year.
If you already configure audit management for dm_login, you can query against the dm_audittrail objects for event_name = dm_connect.
If not, then the only other away I know is to look on the content server. The content server creates a file on the filesystem whenever a user creates a session. Each user has his/her own folder under username (I dont remember off-hand the location). You will have to write some OS level script to count the num of files per user for specific time frame.
There are a couple of ways you can do this. You can examine the server's session files as described here: https://solutions.emc.com/emcsolutionview.asp?id=esg21904, or you could audit the dm_connect method. The dm_connect method is not registered to be audited by default, you must explicitly register it. Once registered, you can query the dm_audittrail for user logins. You could also create a BOF object (TBO or Aspect) for the dm_user object and capture login info in a separate table.
Thks,I found this folder and I will write some code to get userlogin times
But i noticed that sometime system create files inside session log even user give wrong password and login is unsuccesful.
Best way is to enable Audit for dm_user with dm_connect event so that you can get all details.
Hi qiaoleon, has this question been answered? If so, pleae mark the response as "answered".
Thank you!
I catch the “session started by...”string as one success login and I get what I want,thks