About GVM installation and setup -------------------------------- On a fresh install or with a new GVM version you need to run the following scripts: - Run 'sudo gvm-setup' On a fresh install, note the password displayed at the end of the setup. You will need it to connect you to the Web UI GSA (greenbone-security-assistant) Or change the admin password with 'sudo -u _gvm gvmd --user=admin --new-password=yourpassword' - Run 'sudo gvm-check-setup' It will check the setup and start the all the required services if everything is OK. You can now open your browser on https://127.0.0.1:9392 and use GVM. How to use GVM in Kali / Debian ------------------------------- To start the GVM services, use: 'sudo gvm-start' To stop the GVM services, use: 'sudo gvm-stop' To update the data (CERT, SCAP, GVMD_DATA) from the feed server and to update the OpenVAS NVTs from Community Feed, use: 'sudo gvm-feed-update' To update only a type of data, use one of the following commands (depending on what you want to update): 'sudo greenbone-feed-sync --type GVMD_DATA' 'sudo greenbone-feed-sync --type SCAP' 'sudo greenbone-feed-sync --type CERT' 'sudo -u _gvm greenbone-nvt-sync' Please note that you need to run the latest command as _gvm user (see the next paragraph form more information) How to run other GVM commands in Kali / Debian ------------------------------------------------- Since gvm 11, we use a special user _gvm. You need to use this user to run the GVM commands, like 'sudo -u _gvm -- gvmd --get-scanners' 'sudo -u _gvm -- gvmd *' 'sudo -u _gvm greenbone-nvt-sync' 'sudo -u _gvm -- gvm-cli [options]' NOTE: if you run commands only with sudo (or as root user), created or updated files may by owned by root instead of _gvm user and your installation will not work correctly. Other information ----------------- Postgresql optimization: with latest versions of postgresql gvm can be very slow. It can help to add "jit = off" in the postgresql.conf https://community.greenbone.net/t/everything-works-but-i-cant-see-any-report/5875/13 https://bugs.kali.org/view.php?id=6763