Article

mbluteau's picture
article
Reads:

2560

Score:
2
2
3
 
Comments:

1

Sentinel 7 Collector for AGS 6

(View Disclaimer)

Here is a quick step-by-step guide on how to use the Sentinel MySQL collector to point to AGS 6 for audit events. I am running Windows and mySQL for AGS server, but the procedure can be easily adapted to Linux, Oracle or MS-SQL.

Click to view.

Figure 1: Using graphical tool to access MySql database. mysql.exe command can also be used.

e.g. : mysql -u root -p password

Click to view.

Figure 2: spt_audit_event table that contains user(administrators, reviewers, etc) events.

Click to view.

Figure 3: We create a view that will be used by Sentinel to collect events. Alternatively, we could have modified the query in Sentinel collector.

Here is the create view statement:

-------------------------
create view identityiq.general_log as
select CONCAT(FROM_UNIXTIME(LEFT(created, LENGTH(created) - 3)), '.', RIGHT(created, 3)) 
as event_time,action,source as user_host,id as thread_id, 'localhost' as server_id, action as command_type, target as argument from identityiq.spt_audit_event;
--------------------------

Note that we have to convert the bigint format for the created column to a format that Sentinel can read.

Click to view.

Figure 4: general_log view.

Click to view.

Figure 5: Sentinel 7 collector for AGS, MySQL.

You may have to grant additional rights to identityiq user for remote access to mySQL objects, for example:

------------------
GRANT SELECT ON identityiq.general_log TO 'identityiq'@'%';
------------------

Click to view.

Figure 6: AGS 6 events including login, forward, etc.

I hope this quick article proved to be helpful to you.


Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).

It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.




User Comments

tsherwin's picture

Configuration question

Submitted by tsherwin on 12 March 2012 - 9:32am.

Interesting, thank you. Is this leveraging the to-be-released AGS 6 (based on Sailpoint) or some other configuration?

© 2013 Novell