Filtered by tag: configuration

Compile and install OpenVas from source on ubuntu 18.04 live server

Text-Script ////////// Install & Running PostgreSQL on Ubuntu 18.04 sudo apt install postgresql postgresql-contrib postgresql-server-dev-10 sudo systemctl status postgresql systemctl is-enabled postgresql ////////// Create PostgreSQL User and Database sudo -Hiu postgres createuser root createdb -O root tasks ////////// Grant PostgreSQL User DBA Roles sudo -Hiu postgres psql tasks create role dba with superuser noinherit; ...