You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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.

systemctl stop firewalld

 

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

setsebool -P httpd_can_network_connect_db on

 

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

setsebool -P httpd_can_network_connect 1

 

Install the php-mbstring package and restart Aaache.

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

 

 

yum clean all
yum-config-manager --enable ol7_optional_latest
yum install php-mbstring
systemctl restart httpd
  • No labels