Versions Compared

Key

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

...

Open-AudIT Documentation.

ProductProduct Version

NMIS Version

Image Modified

Database

Operating

Systems

Notes
Open-AudIT3.3.1N/AMariaDB
  • Windows Server 2016 and up
  • CentOS 7*
  • RHEL 7
  • RHEL 8
  • Debian 9 and up
  • Ubuntu 18.04 and up

Should Debian 10 install fail with this error, 
'The following signatures couldn't be verified because the public key is not available: NO_PUBKEY',
please run the following command to install the needed GPG Keys and reinstall:

Code Block
sudo -i
apt-get install dirmngr||apt-get install dirmngr||:;
NEED_KEYS=$(apt-get update -qq 2>&1|sed 's!\s\(NO_PUBKEY\s\+[A-Z0-9]\+\)\+!\n\1!g'|grep NO_PUBKEY|tr ' ' '\n'|grep -v NO_PUBKEY)
for KEY in ${NEED_KEYS}; do apt-key adv --keyserver keyserver.ubuntu.com --recv-keys "${KEY}"||:;done;

64bit systems only. More information.
RHEL 8 is supported from Open-AudIT version 4.1.1

*CentOS 8 is not supported due to CentOS 8 being end of maintenance in 31 Dec 2021, your CentOS target should be CentOS 7 https://wiki.centos.org/About/Product

...