Versions Compared

Key

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

Table of Contents

Introduction

Open-AudIT and Open-AudIT Enterprise can be uninstalled as separate items. The Opmantek software stack is strongly interconnected and modules are substantially interdependent for correct operation. If you have other Opmantek products installed on the same server as Open-AudIT Enterprise, you should disable (as opposed to uninstall) Open-AudIT Enterprise. This is detailed below.

 

Assumptions

You are using a standard Open-AudIT and Open-AudIT Enterprise install. If you have changed items such as database name, passwords, etc you will need to adjust the commands below.

Uninstalling Open-AudIT

Database

To remove the database from the server, type the below commands.

...

Open-AudIT can also store attachment data. If you have any attachments, they will be deleted in the next step.

Program Files

To remove all Open-AudIT program files, run the below commands. Note the two apache web directory commands. One will work on Debian based systems, the other will work on RedHat based systems. It is safe to run both.

Code Block
languagebash
rm -rf /usr/local/open-audit
rm -rf /var/www/html/open-audit
rm -rf /var/www/open-audit



Uninstalling Open-AudIT Enterprise

Other Opmantek Software Installed

As advised above, if you have other Opmantek software installed should should not uninstall the Open-AudIT Enterprise program files. The Opmantek software stack is strongly interconnected and modules are substantially interdependent for correct operation. To prevent Open-AudIT Enterprise being available on the server you should edit the file /usr/local/omk/conf/opCommon.nmis. Find the attribute omkd => load_applications and remove Open-AudIT from the list. This will prevent Open-AudIT from being available on the server. You should then execute "service omkd restart" to apply the configuration (ie, stop Open-AudIT running).

No Other Opmantek Software Installed

If no other Opmantek software is installed, you can safely uninstall Open-AudIT Enterprise and it's data by running the below commands. Note the two apache config commands. One will work on Debian based systems, the other will work on RedHat based systems. It is safe to run both.

Code Block
languagebash
service omkd stop
rm -f /etc/init.d/omkd
rm -f /etc/apache2/sites-enabled/04omk-proxy.conf
rm -f /etc/httpd/conf.d/04omk-proxy.conf
rm -rf /usr/local/omk
rm -f /etc/cron.d/oae
rm -f /etc/logrotate.d/open-audit-rotate.conf





 

Removing the Prerequisites (optional)

If you wish to remove all the prerequisites installed by Open-AudIT, see below. Note that this will remove programs such as Apache, MySQL, etc from your server. You should ensure you do not require ANY of these packages on your server. Removing them will break all programs that require them. The packages we install as pre-requisites are below.

...