Securing and Optimizing Linux: RedHat Edition -A Hands on Guide | ||
---|---|---|
Prev | Chapter 14. Software -Security/Monitoring | Next |
One important task in the security world is to regularly check the log files. Often the daily activities of an administrator don't allow him the time to do this task and this can bring about problems.
These installation instructions assume
Commands are Unix-compatible.
The source path is /var/tmp other paths are possible.
Installations were tested on Red Hat Linux 6.1 and 6.2.
All steps in the installation will happen in super-user account root.
Logcheck version number is 1.1.1
These are the packages available at Logcheck Homepage Site: http://www.psionic.com/abacus/logcheck/, and you must be sure to download: logcheck-1.1.1.tar.gz available as of this writing.
: Please do not forget to read the README and/or INSTALL with in the tarball you have downloaded if the version number is not the same as we have suggested and follow the instructions since there are chances of some changes either bythe way of additions or deletions are likely to be there.
Before you uncompress and install from the tarballs it is a good idea to make a list of files on the system before you install Logcheck, and one afterwards, and then compare them using diff to find out what files were placed where. Simply run find /* > Logcheck1 before and find /* > Logcheck2 after you install the software, and use diff Logcheck1 Logcheck2 > Logcheck-Installed to get a list of what changed.
To compile, you need to decompress the tarball (tar.gz).
[root@deep] /#cp logcheck-version.tar.gz /var/tmp/ [root@deep] /#cd /var/tmp [root@deep ]/tmp#tar xzpf logcheck-version.tar.gz |
To Compile and Optimize you must modify the Makefile file of Logcheck to specify installation paths, compilation flags, and optimizations for your system. We must modify this file to be compliant with Red Hat's file system structure and install Logcheck script files under our PATH Environment variable.
Move into the new Logcheck directory and edit the Makefile, vi Makefile and change the following lines by type the following commands on your terminal:
CC = cc |
CC = egcs |
CFLAGS = -O |
CFLAGS = -O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions |
INSTALLDIR = /usr/local/etc |
INSTALLDIR = /etc/logcheck |
INSTALLDIR_BIN = /usr/local/bin |
INSTALLDIR_BIN = /usr/bin |
INSTALLDIR_SH = /usr/local/etc |
INSTALLDIR_SH = /usr/bin |
TMPDIR = /usr/local/etc/tmp |
TMPDIR = /etc/logcheck/tmp |
The above changes will configure the software to use egcs compiler, optimization flags specific to our system, and locate all files related to Logcheck software to the destination target directories we have chosen to be compliant with the Red Hat file system structure.
Edit the Makefile file vi +67 Makefile and change the following line:
@if [ ! -d $(TMPDIR) ]; then /bin/mkdir $(TMPDIR); fi |
@if [ ! -d $(TMPDIR) ]; then /bin/mkdir -p $(TMPDIR); fi |
Install Logcheck on your system.
[root@deep ]/logcheck-1.1.1#make linux |
[root@deep] /#cd /var/tmp [root@deep ]/tmp#rm -rf logcheck-version/ logcheck-version_tar.gz |