When AIX audit start, How to set the /audit/stream.out file size ?


 
Thread Tools Search this Thread
Operating Systems AIX When AIX audit start, How to set the /audit/stream.out file size ?
# 1  
Old 12-29-2011
When AIX audit start, How to set the /audit/stream.out file size ?

Dear All


When I start the AIX(6100-06)audit subsystem.

the log will save in /audit/stream.out (or /audit/trail), but in default when /audit/stream.out to grow up to 150MB.

It will replace the original /audit/stream.out (or /audit/trail).

Then the /audit/stream.out become empty and only contain new data.

So, Can I manual setting the stream.out (or /audit/trail) file size?
# 2  
Old 12-30-2011
Why don't you write a script which will monitor the file size of stream.out and if it becomes close to 150MB, the script will make a backup copy of it before the audit subsystem over writes the file?

You may place this in your crontab for executing it in every 30 minutes or so:

Code:
#!/bin/ksh

size=$( /usr/bin/du -k /audit/stream.out | /bin/awk {print $1} )

# I'm considering the threshold size to be 148MB; you may increase the
# frequency of the cron job while increasing the threshold size.

if [ $size -ge 151552 ]; then
   cp /audit/stream.out /audit/stream.out.`date +"%F-%H-%M-%S"`
fi

exit 0

# 3  
Old 12-30-2011
Hi, admin_xor

Thanks for your reply.

If possible best way is use audit subsystem to change the restrict of file size.

Use script to copy a stream.out to a new file (ex. stream.out.1).

It has a problem, when stream.out copy to stream.out.1 there may have some record loss..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

how to configure a audit in global zone that will audit all the zone

Hi everyone, how i can configure a single audit service in the global zone for all zones, on solaris BSM. I will be glad to hear back from you. Thanks and Regards (3 Replies)
Discussion started by: ladondo
3 Replies

2. UNIX for Dummies Questions & Answers

Audit Flat File - # of Columns / Rows

We receive a file which usually has 40 to 50 million rows. I want to set up an audit process by which everytime we receive a file we audit it for # of rows and total number of columns. So if the # of rows is around 1 million on a particular day, I want to raise a flag or send an email....and if... (3 Replies)
Discussion started by: priya33184
3 Replies

3. Solaris

Is it possible to audit a specific folder or file in Solaris ?

Hi, I wish to audit access to a specific folder or file in Solaris. I have read the man pages for auditd, audit_control , audit_event but don't seem to find any clue. Has anyone tried this before ? Is it feasible ? Any advise is appreciated. Thanks Yik (5 Replies)
Discussion started by: ycheng08
5 Replies

4. AIX

Aix 5.3 Audit issue - not orking properly

Hello Friends, I had enabled the audit and configured for sysadmin user alone in audit config file. but the audit starts logging for root user alone. Attached the conf file. I want the aduit to record only for sysadmin activities.. need your expertise and help in solving the issue. (1 Reply)
Discussion started by: kmvinay
1 Replies

5. AIX

audit.log file rotation

Hi guys, I've googled this quite a bit, and tried searching on these forums, but haven't found a solution to my problem. I wanted to inquire about AIX's audit subsystem - more specifically, how to rotate its log file. So far I've been able to find how to rotate AIX syslog log files, and I... (2 Replies)
Discussion started by: w1r3d
2 Replies

6. AIX

Need to audit LV's - need some command help

I need to run a DC wide audit of some oracle filesystems to ensure their all on SAN. In linux its pretty easy since its LVM device structure includes the VG for which that lv is part of (/dev/VGFOO/lv-bar). As such I can just run mount and do some greping to get the needed info. SO my question... (2 Replies)
Discussion started by: Mattchewie
2 Replies

7. AIX

AIX audit users activity

Is there a tool or application the will audit users activity? I've tryed to use audit the comes with AIX but to gathers so much information it is near impossible to see what they are doing. I just want to monitor logins and and files they create or change. (9 Replies)
Discussion started by: daveisme
9 Replies

8. Cybersecurity

Enabling C2 audit

hey guys, im going to enable C2 auditing on a sun box, i know how to do it, but im just wondering if there are any issues or problems that i may run into. this will be my first major change (since i have to reset the box) since i joined this company and i dont really wanna kill their servers, so... (2 Replies)
Discussion started by: roguekitton
2 Replies

9. Red Hat

server audit

Hi all.. I need to perform an audit on my servers (ranging form mdk to redhat, knoppix...). I know there exists somewhere a script that could get me back the info i want.. I've googled around, and haven't found anything interesting.. Anyone have some thing i could investigate? Thanx ... (5 Replies)
Discussion started by: penguin-friend
5 Replies
Login or Register to Ask a Question