Versions Compared

Key

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

The Open-AudIT installer doesn't cater for Oracle Linux. To get Open-AudIT installed and running, follow the below.

 


Install Open-AudIT as per normal. 


You will not have the required php-mbstring package and you will need to allow access to MariaDB and the OMKD daemon from the HTTPD daemon. 


Disable the firewall. You might also allow specific rules, that is left to the user.

Code Block
systemctl stop firewalld

...


To allow MySQL access, run the below on the command line.

Code Block
setsebool -P httpd_can_network_connect_db on

...


To allow outbound proxy requests (from httpd -> omkd)

NOTE - Not required for 5.0.0 onwards.

Code Block
setsebool -P httpd_can_network_connect 1

 


Install the php-mbstring package and restart Apache.

Code Block
nano /etc/yum.repos.d/public-yum-ol7.repo

...


[ol7_optional_latest]
name=Oracle Linux $releasever Optional Latest ($basearch)
baseurl=http://yum.oracle.com/repo/OracleLinux/OL7/optional/latest/$basearch/
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
gpgcheck=1
enabled=1

 

...



Code Block
yum clean all
yum-config-manager --enable ol7_optional_latest
yum install php-mbstring
systemctl restart httpd

...