guardicore / monkey

Infection Monkey - An open-source adversary emulation platform
https://www.guardicore.com/infectionmonkey/
GNU General Public License v3.0
6.66k stars 782 forks source link

Flawless Centos 7 Installation #1235

Closed mssalvatore closed 3 years ago

mssalvatore commented 3 years ago

Spike

Objective

Test the installation of Infection Monkey on Centos 7. @ilija-lazoroski

Scope

The below tests are not intended to be exhaustive. Rather, they are smoke tests to verify the basic functionality of Infection Monkey on Centos 7.

Output

The output of this spike is a set of GitHub issues (bugs). When these bugs are resolved, we should be able to claim to have a flawless installation experience on Centos 7.

ilija-lazoroski commented 3 years ago

Created #1354 and #1355 .

ilija-lazoroski commented 3 years ago

Related to #1355 Missing: openssl11-libs installed with yum glibc-2.18 installed with


# yum install gcc
wget http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
tar zxf glibc-2.18.tar.gz 
cd glibc-2.18/
mkdir build
cd build/
../configure --prefix=/usr
make -j4
make install```