Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
cd /tmp
tar xf OAE-Linux-x68_64-release_1.4.tar.gz
cd Open-AudIT-1.4.0
./installer

 

...

CentOS / RedHat considerations

CentOS and RedHat may require some items set outside of the installer script. These will be added to the installer in a future version.

SELinux

If SELinux is installed and running, you will need to disable it.

To stop SELinux run the command

Code Block
languagebash
setenforce 0

To ensure it does not start after a reboot, edit the file /etc/sysconfig/config and change the line

SELINUX=enforcing

to

SELINUX=permissive

ipTables

ipTables is installed, active and blocks all ports except port 22 by default. You can disable ipTables completely or allow only port 80.

To disable ipTables completely, run the following commands:

Code Block
languagebash
service iptables stop

then stop it from starting with

Code Block
languagebash
chkconfig iptables off

To allow only port 80, run the following commands:

Code Block
languagebash
iptables -I INPUT 5 -i eth0 -p tcp --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT

and then save it

Code Block
languagebash
service iptables save

Apache Proxy Config on RedHat

If the installer cannot find your Apache config directory (usually only on Ubuntu), you will need to manually copy the Apache proxy config file.

...