Centos7 install guide, ansible

hi,

I would like to install greenbone on Centos7, but unfortunately available guides not very exact.
I have used this: https://bobcares.com/blog/install-openvas-centos-7/

So, could you give me a guide or installer script for centos 7 or ansible role?

The main problem is:

Error: Package: OSPd-openvas-1.0.0-9460.el7.art.noarch (atomic)
           Requires: python36-defusedxml
Error: Package: OSPd-2.0.0-9459.el7.art.noarch (atomic)
           Requires: python36-defusedxml
Error: Package: OSPd-openvas-1.0.0-9460.el7.art.noarch (atomic)
           Requires: python36-paramiko
Error: Package: OSPd-2.0.0-9459.el7.art.noarch (atomic)
           Requires: python36-paramiko
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

Thanks

This script is not from Greenbone nor supported by this forum, please contact the creator by his website. Please note the GSE is as it is, so no install support is possible here expect from the community on fully voluntary basis.

1 Like

I recommend using CentOS8 and GVM 20.08. This is the latest version from Greenbone. Everything else makes no sense.

You can try to use this tutorial in German language. Use the translator on the website for your convenience.
https://pentestit.de/gvm-20-08-auf-centos-8-mittels-openvas-packaging-project-installieren/

1 Like

I have moved on this problem, currently the problem you can check below:

-- Requested 'uuid >= 2.25.0' but version of uuid is 2.23.0

I have understood, but unfortunatelly we have only centos7 in our environment. So i have to solve this problem, moreover I have to create an ansible role for this.

If you have more info for my problem I appreciate it.

I had the same issue. I believe its because centos7 uses python2 by default and GVM has python3 as a dependency.
This is how I fixed it
yum install -y python3
yum --enablerepo=extras install epel-release
yum install python-devel
yum install libffi-devel
yum install openssl-devel
yum install python-pip
pip install paramiko
pip install --upgrade pip

1 Like