Giter Site home page Giter Site logo

greenbone / greenbone-container-images Goto Github PK

View Code? Open in Web Editor NEW
4.0 5.0 1.0 76 KB

Additional Container Images from Greenbone

Home Page: https://greenbone.github.io/docs/

License: GNU General Public License v3.0

Dockerfile 90.32% Shell 9.68%
container docker docker-compose greenbone openvas vulnerability-management vulnerability-scanners greenbone-community-edition devops dockerfile extended

greenbone-container-images's Introduction

Greenbone Logo

Additional Container Images

This repository contains Dockerfiles describing additional services required to run various containers/modules/services/... build by Greenbone.

The images are publicly available at https://hub.docker.com/u/greenbone/.

greenbone-container-images's People

Contributors

bjoernricks avatar dependabot[bot] avatar pascalholthaus avatar y0urself avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

greenbone-container-images's Issues

Docker 22.4 images in past few days are broken - builds done last week work great

I've been using GVM for a year or so and I recently moved my company over to a docker based system. This system was built using the docker script supplied by Greenbone on the comminuty containers site and it has worked great.

We have previously built around 20 systems using the script, but in the last few days something has changed with the compose file and a bunch more containers have are now being pulled down.

In the past few days GVM seems a bit less stable (another post for another day) but most importantly ANY NEW BUILD no longer applies credential scanning if configured. Builds only a few weeks older perform credential scans no problem will show in their logs the status of the credentials too. Test builds today do not even acknowledge existend of or any attempts to use credentials - its as though they dont exist!

We keep an unpatched Win10 1809 to verify all our pentest tools, and when this is lab scanned with another build from last week it all works fine. (Also tested with GVM VMware appliance too.) If I roll back to a fresh Ubuntu snapshot on the same virutual machine as used for the earlier succesful tests, and then build with today's containers into the eact same network enviroment I can reproduce the same problem of no credentials scanning being avalaible anymore.

Any ideas what changed this week?

Docker & GVM 22.4 on Ubuntu 22.4: Community install script is broken. (credential scanning now not working but last week it did))

Issue #1 appears to be quite prematurely closed and the response does not refelect the observations I'm trying to report.

If you follow the script on the community page EXACTLY as docmenterd (on Ubuntu 22.04) a missing docker compose dependency is still reported – EVEN THOUOUGH THE PIP version of docker compose IS installed. Thus the respose given around version requirements in issue #1 seems incorrect. Does this have any bearing on SMB credential scanning anyway? Everytghing else in scanning seems to work, just not credentials. In the rush to close things out I dont think both of these points havbe been teased out.

Its easy to reproduce. The script will not allow the installation to progress without also adding apt install docker compose - so what to do?

mqtt-broker not starting

Hi there,

When using the CE images, the mqtt-broker container fails to start. It did so perfectly before, and suddenly after a system upgrade (apt-get upgrade), it does not start.

When running docker logs mqtt-broker, there is nothing output, and the container does not show on either docker network or is not reachable from another container in the network.

Any ideas? (We have tried restarting the server, deleting the network, deleting the image, to no avail)

Thanks!

Having some trouble with the Report Formats

When i try to rebuild-gvmd-data i get

vmd@8ca090dd8a02:/$ gvmd --rebuild-gvmd-data=all
Failed to rebuild gvmd data: No report formats feed directory.

Also my report formats were empty
image

And the version im using is

image

heres my docker-compose

services:
  vulnerability-tests:
    image: greenbone/vulnerability-tests
    environment:
      STORAGE_PATH: /var/lib/openvas/21.04/vt-data/nasl
    volumes:
      - vt_data_vol:/mnt

  scap-data:
    image: greenbone/scap-data
    volumes:
      - scap_data_vol:/mnt

  cert-bund-data:
    image: greenbone/cert-bund-data
    volumes:
      - cert_data_vol:/mnt

  dfn-cert-data:
    image: greenbone/dfn-cert-data
    volumes:
      - cert_data_vol:/mnt
    depends_on:
      - cert-bund-data

  data-objects:
    image: greenbone/data-objects
    volumes:
      - data_objects_vol:/mnt

  report-formats:
    image: greenbone/report-formats
    volumes:
      - data_objects_vol:/mnt
    depends_on:
      - data-objects

  gpg-data:
    image: greenbone/gpg-data
    volumes:
      - gpg_data_vol:/mnt

  redis-server:
    image: greenbone/redis-server
    restart: on-failure
    volumes:
      - redis_socket_vol:/run/redis/

  pg-gvm:
    image: greenbone/pg-gvm:oldstable
    restart: on-failure
    volumes:
      - psql_data_vol:/var/lib/postgresql
      - psql_socket_vol:/var/run/postgresql

  gvmd:
    image: greenbone/gvmd:oldstable
    restart: on-failure
    volumes:
      - gvmd_data_vol:/var/lib/gvm
      - scap_data_vol:/var/lib/gvm/scap-data/
      - cert_data_vol:/var/lib/gvm/cert-data
      - data_objects_vol:/var/lib/gvm/data-objects/gvmd
      - vt_data_vol:/var/lib/openvas/plugins
      - psql_data_vol:/var/lib/postgresql
      - gvmd_socket_vol:/run/gvmd
      - ospd_openvas_socket_vol:/run/ospd
      - psql_socket_vol:/var/run/postgresql
    depends_on:
      pg-gvm:
        condition: service_started
      scap-data:
        condition: service_started
      cert-bund-data:
        condition: service_started
      dfn-cert-data:
        condition: service_started
      data-objects:
        condition: service_started
      report-formats:
        condition: service_started

  gsa:
    image: greenbone/gsa:oldstable
    restart: on-failure
    ports:
      - 10.22.1.150:9392:80
    volumes:
      - gvmd_socket_vol:/run/gvmd
    depends_on:
      - gvmd

  ospd-openvas:
    image: greenbone/ospd-openvas:oldstable
    restart: on-failure
    cap_add:
      - NET_ADMIN # for capturing packages in promiscuous mode
      - NET_RAW # for raw sockets e.g. used for the boreas alive detection
    security_opt:
      - seccomp=unconfined
      - apparmor=unconfined
    volumes:
      - gpg_data_vol:/etc/openvas/gnupg
      - vt_data_vol:/var/lib/openvas/plugins
      - ospd_openvas_socket_vol:/run/ospd
      - redis_socket_vol:/run/redis/
    depends_on:
      redis-server:
        condition: service_started
      gpg-data:
        condition: service_started
      vulnerability-tests:
        condition: service_started

  gvm-tools:
    image: greenbone/gvm-tools
    volumes:
      - gvmd_socket_vol:/run/gvmd
      - ospd_openvas_socket_vol:/run/ospd
    depends_on:
      - gvmd
      - ospd-openvas

volumes:
  gpg_data_vol:
  scap_data_vol:
  cert_data_vol:
  data_objects_vol:
  gvmd_data_vol:
  psql_data_vol:
  vt_data_vol:
  psql_socket_vol:
  gvmd_socket_vol:
  ospd_openvas_socket_vol:
  redis_socket_vol:

redis-server does not work properly in the latest image after update to debian 12

The redis configuration has persistence turned on, which results in error message like:

12 Jun 2023 08:16:20.177 * Background saving started by pid 10
12 Jun 2023 08:16:20.177 # Failed opening the temp RDB file temp-10.rdb (in server root dir /) for saving: Permission denied
12 Jun 2023 08:16:20.231 # Background saving error

This does not seem to be a new issue as far as I can tell, what apparently is new is that redis 7 in debian 12 seems to stop working when it fails to store the data. This is possibly related to redis/redis#10504

A workaround is to disable persistence like in greenbone/openvas-scanner@aed0474

We're running this in kubernetes, but I don't see any volume specified in the community docker compose configuration except for the socket. Running the image locally with podman results in the same issue (after a SET and an explicit SYNC).

Redis failing to start: cannot remove '/run/redis/redis.sock'

I'm running a a brand new hosting environment, with a brand new docker. I've made no changes. When I run the official docker-compose file (https://greenbone.github.io/docs/latest/22.4/container/index.html#docker-compose-file), a few containers fail to run due to Redis failing:

greenbone-network-scanner-redis-server-1         | rm: cannot remove '/run/redis/redis.sock': Permission denied

A work-around is to pull the Dockerfile and redis config down locally (https://github.com/greenbone/greenbone-container-images/tree/main/redis-server).

Then I commented out the USER directive:
https://github.com/greenbone/greenbone-container-images/blob/main/redis-server/Dockerfile#L14

Again, that change I made was a work-around to get things running. The official compose stack, with zero changes, no longer runs right now. I'm running Docker Mac (Intel). I have the latest Mac (13.4.1), and Docker Desktop (4.20.1) .

Greenbone docker compose containers seem to not start correctly

I'm using Docker and I'm following the Greenbone guide for running containers by docker compose.

As specified in the guide, I run:

docker compose -f $DOWNLOAD_DIR/docker-compose.yml -p greenbone-community-edition up

Note that I tested by docker compose and docker-compose.

I get the stream, but when I access to http://localhost:9392 by the browser, I cannot access to it.

The full stream of docker compose command above is:

[+] Running 26/26
[+] Running 27/27one-community-edition_default                   Created                                         0.3s 
 ✔ Network greenbone-community-edition_default                   Created                                         0.3s 
 ✔ Volume "greenbone-community-edition_scap_data_vol"            Created                                         0.0s 
[+] Running 29/29one-community-edition_vt_data_vol"              Created                                         0.0s 
 ✔ Network greenbone-community-edition_default                   Created                                         0.3s 
 ✔ Volume "greenbone-community-edition_scap_data_vol"            Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_vt_data_vol"              Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_psql_socket_vol"          Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_redis_socket_vol"         Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_notus_data_vol"           Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_gpg_data_vol"             Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_ospd_openvas_socket_vol"  Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_gvmd_data_vol"            Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_gvmd_socket_vol"          Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_data_objects_vol"         Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_psql_data_vol"            Created                                         0.0s 
 ✔ Volume "greenbone-community-edition_cert_data_vol"            Created                                         0.0s 
 ✔ Container greenbone-community-edition-gpg-data-1              Created                                         0.3s 
 ✔ Container greenbone-community-edition-data-objects-1          Created                                         0.3s 
 ✔ Container greenbone-community-edition-redis-server-1          Created                                         0.3s 
 ✔ Container greenbone-community-edition-mqtt-broker-1           Created                                         0.3s 
 ✔ Container greenbone-community-edition-vulnerability-tests-1   Created                                         0.3s 
 ✔ Container greenbone-community-edition-pg-gvm-1                Created                                         2.1s 
 ✔ Container greenbone-community-edition-cert-bund-data-1        Created                                         0.3s 
 ✔ Container greenbone-community-edition-notus-data-1            Created                                         0.3s 
 ✔ Container greenbone-community-edition-scap-data-1             Created                                         0.3s 
 ✔ Container greenbone-community-edition-report-formats-1        Created                                         0.2s 
 ✔ Container greenbone-community-edition-ospd-openvas-1          Created                                         0.2s 
 ✔ Container greenbone-community-edition-notus-scanner-1         Created                                         0.2s 
 ✔ Container greenbone-community-edition-dfn-cert-data-1         Created                                         0.2s 
 ✔ Container greenbone-community-edition-gvmd-1                  Created                                         0.0s 
 ✔ Container greenbone-community-edition-gsa-1                   Created                                         0.1s 
 ✔ Container greenbone-community-edition-gvm-tools-1             Created                                         0.1s 
Attaching to greenbone-community-edition-cert-bund-data-1, greenbone-community-edition-data-objects-1, greenbone-community-edition-dfn-cert-data-1, greenbone-community-edition-gpg-data-1, greenbone-community-edition-gsa-1, greenbone-community-edition-gvm-tools-1, greenbone-community-edition-gvmd-1, greenbone-community-edition-mqtt-broker-1, greenbone-community-edition-notus-data-1, greenbone-community-edition-notus-scanner-1, greenbone-community-edition-ospd-openvas-1, greenbone-community-edition-pg-gvm-1, greenbone-community-edition-redis-server-1, greenbone-community-edition-report-formats-1, greenbone-community-edition-scap-data-1, greenbone-community-edition-vulnerability-tests-1
greenbone-community-edition-data-objects-1         | License information for Greenbone Community Feed
greenbone-community-edition-data-objects-1         | ------------------------------------------------
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | The "Greenbone Community Feed - Data Objects" is a database
greenbone-community-edition-data-objects-1         | licensed under the Open Data Commons Open Database License
greenbone-community-edition-data-objects-1         | version 1.0 (ODbLv1).
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | The license for the Greenbone data objects files of the
greenbone-community-edition-data-objects-1         | Greenbone Community Feed is the GNU Affero General Public
greenbone-community-edition-data-objects-1         | License Version 3 (GNU AGPLv3).
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | ODbLv1: See file LICENSE.ODbLv1
greenbone-community-edition-data-objects-1         | AGPLv3: See file LICENSE.AGPLv3
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | The following text will satisfy notice under ODbLv1 Section 4.3:
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | Contains information from Greenbone Community Feed
greenbone-community-edition-data-objects-1         | (GCF, https://www.greenbone.net/en/gcf-odbl-license/) which is
greenbone-community-edition-data-objects-1         | made available here under the Open Database License
greenbone-community-edition-data-objects-1         | (ODbL, https://opendatacommons.org/licenses/odbl/odbl-10.txt).
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | For more information please contact Greenbone Networks GmbH:
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         |   https://www.greenbone.net or [email protected]
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | 
greenbone-community-edition-data-objects-1         | Copying data objects... 
greenbone-community-edition-data-objects-1         | files copied.
greenbone-community-edition-data-objects-1 exited with code 0
greenbone-community-edition-notus-data-1           | License information for Greenbone Community Feed
greenbone-community-edition-notus-data-1           | ------------------------------------------------
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | The Greenbone Community Feed is a database licensed
greenbone-community-edition-notus-data-1           | under the Open Data Commons Open Database License version 1.0
greenbone-community-edition-notus-data-1           | (ODbLv1).
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | The effective license for the Vulnerability Tests (VTs) within
greenbone-community-edition-notus-data-1           | the Greenbone Community Feed is the GNU General Public License
greenbone-community-edition-notus-data-1           | Version 2 (GNU GPLv2). The majority of VTs is licensed under
greenbone-community-edition-notus-data-1           | "GNU GPLv2 or later" (GNU GPLv2+). A minority of the
greenbone-community-edition-notus-data-1           | VTs is licensed under "GNU GPLv2" or under "GPLv2 or GPLv3".
greenbone-community-edition-notus-data-1           | You will find the actual license of each file in its header part.
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | ODbLv1: see file LICENSE.ODbLv1
greenbone-community-edition-notus-data-1           | GPLv2: see file LICENSE.GPLv2
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | The following text will satisfy notice under ODbLv1 Section 4.3:
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | Contains information from Greenbone Community Feed
greenbone-community-edition-notus-data-1           | (GCF, https://www.greenbone.net/en/gcf-odbl-license/) which is
greenbone-community-edition-notus-data-1           | made available here under the Open Database License
greenbone-community-edition-notus-data-1           | (ODbL, https://opendatacommons.org/licenses/odbl/odbl-10.txt).
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | For more information please contact Greenbone Networks GmbH:
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           |   https://www.greenbone.net or [email protected]
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | 
greenbone-community-edition-notus-data-1           | Copying notus data... 
greenbone-community-edition-cert-bund-data-1       | CERT-Bund (files CB-K*.xml)
greenbone-community-edition-cert-bund-data-1       | ---------------------------
greenbone-community-edition-cert-bund-data-1       | 
greenbone-community-edition-cert-bund-data-1       | This directory contains advisory data provided by BSI. You are given the
greenbone-community-edition-cert-bund-data-1       | non-exclusive, royalty-free license to download, copy, reference, analyze
greenbone-community-edition-cert-bund-data-1       | and redistribute it. This data must not be modified and BSI's copyright
greenbone-community-edition-cert-bund-data-1       | designation and license have to be reproduced in any copy.
greenbone-community-edition-cert-bund-data-1       | 
greenbone-community-edition-cert-bund-data-1       | Copying CERT-Bund data... 
greenbone-community-edition-cert-bund-data-1       | files copied.
greenbone-community-edition-gpg-data-1             | files copied
greenbone-community-edition-scap-data-1            | This directory contains SCAP data provided by The MITRE Corporation and the
greenbone-community-edition-scap-data-1            | National Institute of Standards and Technology (NIST).
greenbone-community-edition-scap-data-1            | 
greenbone-community-edition-scap-data-1            | CVE is a publicly available and free to use list or dictionary of standardized
greenbone-community-edition-scap-data-1            | identifiers for common computer vulnerabilities and exposures. The master copy
greenbone-community-edition-scap-data-1            | of the CVE List is maintained for the community by MITRE. You may download the
greenbone-community-edition-scap-data-1            | CVE List, copy it, redistribute it, reference it, and analyze it, provided you
greenbone-community-edition-scap-data-1            | do not modify CVE itself as per the Terms of Use listed at
greenbone-community-edition-scap-data-1            | http://cve.mitre.org/about/termsofuse.html. For more details, visit
greenbone-community-edition-scap-data-1            | http://cve.mitre.org/.
greenbone-community-edition-scap-data-1            | 
greenbone-community-edition-scap-data-1            | CPE is a structured naming scheme for information technology systems, software,
greenbone-community-edition-scap-data-1            | and packages. This directory contains a copy of the official CPE Product
greenbone-community-edition-scap-data-1            | Dictionary. The dictionary provides an agreed upon list of official CPE names.
greenbone-community-edition-scap-data-1            | The dictionary is provided in XML format and is available to the general
greenbone-community-edition-scap-data-1            | public. The CPE Dictionary hosted and maintained at NIST may be used by
greenbone-community-edition-scap-data-1            | nongovernmental organizations on a voluntary basis and is not subject to
greenbone-community-edition-scap-data-1            | copyright in the United States. Attribution would, however, be appreciated by
greenbone-community-edition-scap-data-1            | NIST.  For more details, visit http://nvd.nist.gov/cpe.cfm.
greenbone-community-edition-scap-data-1            | 
greenbone-community-edition-scap-data-1            | OVAL is an information security community effort to standardize how to assess
greenbone-community-edition-scap-data-1            | and report upon the machine state of computer systems. It is international in
greenbone-community-edition-scap-data-1            | scope and free for public use. The OVAL Language and any resulting OVAL content
greenbone-community-edition-scap-data-1            | based upon the language that is stored in the OVAL Repository are free to use
greenbone-community-edition-scap-data-1            | by any organization or individual for any research, development, and/or
greenbone-community-edition-scap-data-1            | commercial purposes, per the Terms of Use listed at
greenbone-community-edition-scap-data-1            | http://oval.mitre.org/about/termsofuse.html. For more details, visit
greenbone-community-edition-scap-data-1            | http://oval.mitre.org/.
greenbone-community-edition-scap-data-1            | 
greenbone-community-edition-scap-data-1            | Copying SCAP data... 
greenbone-community-edition-vulnerability-tests-1  | License information for Greenbone Community Feed
greenbone-community-edition-vulnerability-tests-1  | ------------------------------------------------
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | The Greenbone Community Feed (GCF) is a database licensed
greenbone-community-edition-vulnerability-tests-1  | under the Open Data Commons Open Database License version 1.0
greenbone-community-edition-vulnerability-tests-1  | (ODbLv1).
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | The effective license for the Vulnerability Tests (VTs) within
greenbone-community-edition-vulnerability-tests-1  | the Greenbone Community Feed is the GNU General Public License
greenbone-community-edition-vulnerability-tests-1  | Version 2 (GNU GPLv2). The majority of VTs is licensed under
greenbone-community-edition-vulnerability-tests-1  | "GNU GPLv2 or later" (GNU GPLv2+). A minority of the
greenbone-community-edition-vulnerability-tests-1  | VTs is licensed under "GNU GPLv2" or under "GPLv2 or GPLv3".
greenbone-community-edition-vulnerability-tests-1  | You will find the actual license of each file in its header part.
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | ODbLv1: see file LICENSE.ODbLv1
greenbone-community-edition-vulnerability-tests-1  | GPLv2: see file LICENSE.GPLv2
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | The following text will satisfy notice under ODbLv1 Section 4.3:
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | Contains information from Greenbone Community Feed
greenbone-community-edition-vulnerability-tests-1  | (GCF, https://www.greenbone.net/en/gcf-odbl-license/) which is
greenbone-community-edition-vulnerability-tests-1  | made available here under the Open Database License
greenbone-community-edition-vulnerability-tests-1  | (ODbL, https://opendatacommons.org/licenses/odbl/odbl-10.txt).
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | For more information please contact Greenbone Networks GmbH:
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  |   https://www.greenbone.net or [email protected]
greenbone-community-edition-vulnerability-tests-1  | 
greenbone-community-edition-vulnerability-tests-1  | Copying vulnerability tests data... 
greenbone-community-edition-notus-data-1           | files copied.
greenbone-community-edition-mqtt-broker-1          | 1688119400: mosquitto version 2.0.11 starting
greenbone-community-edition-mqtt-broker-1          | 1688119400: Config loaded from /etc/mosquitto.conf.
greenbone-community-edition-mqtt-broker-1          | 1688119400: Opening ipv4 listen socket on port 1883.
greenbone-community-edition-mqtt-broker-1          | 1688119400: Opening ipv6 listen socket on port 1883.
greenbone-community-edition-mqtt-broker-1          | 1688119400: mosquitto version 2.0.11 running
greenbone-community-edition-report-formats-1       | License information for Greenbone Community Feed - Data Objects
greenbone-community-edition-report-formats-1       | ---------------------------------------------------------------
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | The Greenbone Community Feed is a database licensed under the
greenbone-community-edition-report-formats-1       | Open Data Commons Open Database License version 1.0 (ODbLv1).
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | The license for the Greenbone Vulnerability Manager daemon (gvmd) data objects of the
greenbone-community-edition-report-formats-1       | Greenbone Community Feed is the GNU Affero General Public License Version 3 (GNU AGPLv3).
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | ODbLv1: See file LICENSE.ODbLv1
greenbone-community-edition-report-formats-1       | AGPLv3: See file LICENSE.AGPLv3
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | The following text will satisfy notice under ODbLv1 Section 4.3:
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | Contains information from Greenbone Community Feed (GCF, https://www.greenbone.net/en/gcf-odbl-license/) which is
greenbone-community-edition-report-formats-1       | made available here under the Open Database License (ODbL, https://opendatacommons.org/licenses/odbl/odbl-10.txt).
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | For more information please contact Greenbone Networks GmbH:
greenbone-community-edition-report-formats-1       | https://www.greenbone.net or [email protected]
greenbone-community-edition-report-formats-1       | 
greenbone-community-edition-report-formats-1       | Copying report formats... 
greenbone-community-edition-report-formats-1       | files copied.
greenbone-community-edition-redis-server-1         | 8:C 30 Jun 2023 10:03:21.535 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
greenbone-community-edition-redis-server-1         | 8:C 30 Jun 2023 10:03:21.535 # Redis version=7.0.11, bits=64, commit=00000000, modified=0, pid=8, just started
greenbone-community-edition-redis-server-1         | 8:C 30 Jun 2023 10:03:21.535 # Configuration loaded
greenbone-community-edition-redis-server-1         | 8:M 30 Jun 2023 10:03:21.535 * monotonic clock: POSIX clock_gettime
greenbone-community-edition-redis-server-1         | 8:M 30 Jun 2023 10:03:21.602 * Running mode=standalone, port=0.
greenbone-community-edition-redis-server-1         | 8:M 30 Jun 2023 10:03:21.602 # Server initialized
greenbone-community-edition-redis-server-1         | 8:M 30 Jun 2023 10:03:21.602 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
greenbone-community-edition-redis-server-1         | 8:M 30 Jun 2023 10:03:21.602 * The server is now ready to accept connections at /run/redis/redis.sock
greenbone-community-edition-dfn-cert-data-1        | DFN-CERT (files dfn-cert-*.xml)
greenbone-community-edition-dfn-cert-data-1        | -------------------------------
greenbone-community-edition-dfn-cert-data-1        | 
greenbone-community-edition-dfn-cert-data-1        | This directory contains advisory data provided by DFN-CERT Services GmbH
greenbone-community-edition-dfn-cert-data-1        | (DFN-CERT). This data is provided to allow a mapping between the CVE
greenbone-community-edition-dfn-cert-data-1        | dictionary and advisories as provided by DFN-CERT. You are given the
greenbone-community-edition-dfn-cert-data-1        | non-exclusive, royalty-free license to download it, copy it, redistribute it,
greenbone-community-edition-dfn-cert-data-1        | reference and analyze it. A modification of the data is only allowed as far
greenbone-community-edition-dfn-cert-data-1        | as the original mapping semantics are kept intact. DFN-CERT's copyright
greenbone-community-edition-dfn-cert-data-1        | designation and license have to be reproduced in any copy.
greenbone-community-edition-dfn-cert-data-1        | 
greenbone-community-edition-dfn-cert-data-1        | 
greenbone-community-edition-dfn-cert-data-1        | Copying DFN-CERT data... 
greenbone-community-edition-dfn-cert-data-1        | files copied.
greenbone-community-edition-gpg-data-1 exited with code 0
greenbone-community-edition-notus-data-1 exited with code 0
greenbone-community-edition-cert-bund-data-1 exited with code 0
greenbone-community-edition-report-formats-1 exited with code 0
greenbone-community-edition-dfn-cert-data-1 exited with code 0
greenbone-community-edition-notus-scanner-1        | 2023-06-30 10:03:25,037 notus-scanner: INFO: (notus.scanner.daemon) Starting notus-scanner version 22.4.5.
greenbone-community-edition-mqtt-broker-1          | 1688119405: New connection from 172.20.0.4:57411 on port 1883.
greenbone-community-edition-mqtt-broker-1          | 1688119405: New client connected from 172.20.0.4:57411 as notus-scanner (p5, c1, k60).
greenbone-community-edition-scap-data-1            | files copied.
greenbone-community-edition-scap-data-1 exited with code 0
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1                  | starting gsad
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: /var/log/gvm/gsad.log: No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: cannot open '/var/log/gvm/gsad.log' for reading: No such file or directory
greenbone-community-edition-gsa-1                  | tail: no files remaining
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 0
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 0
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: /var/log/gvm/gsad.log: No such file or directory
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading: No such file or directory
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 0
greenbone-community-edition-gsa-1                  | starting gsad
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: 
greenbone-community-edition-gsa-1                  | /var/log/gvm/gsad.log
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: 
greenbone-community-edition-gsa-1                  | /var/log/gvm/gsad.log
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1                  | starting gsad
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: 
greenbone-community-edition-gsa-1                  | /var/log/gvm/gsad.log
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1                  | starting gsad
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: 
greenbone-community-edition-gsa-1                  | /var/log/gvm/gsad.log
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-pg-gvm-1               | The PostgreSQL server failed to start. Please check the log output:
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.321 UTC [23] LOG:  starting PostgreSQL 13.11 (Debian 13.11-0+deb11u1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.340 UTC [23] LOG:  listening on IPv4 address "127.0.0.1", port 5432
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.340 UTC [23] LOG:  could not bind IPv6 address "::1": Cannot assign requested address
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.340 UTC [23] HINT:  Is another postmaster already running on port 5432? If not, wait a few seconds and retry.
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.425 UTC [23] LOG:  listening on Unix socket "/tmp/.s.PGSQL.5432"
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.440 UTC [24] LOG:  database system was shut down at 2023-06-20 10:59:42 UTC
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:18.467 UTC [23] LOG:  database system is ready to accept connections
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-pg-gvm-1               | CREATE ROLE
greenbone-community-edition-pg-gvm-1               | GRANT ROLE
greenbone-community-edition-pg-gvm-1               | CREATE EXTENSION
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-pg-gvm-1               | CREATE EXTENSION
greenbone-community-edition-gvmd-1                 | waiting 1 second for ready postgres container
greenbone-community-edition-pg-gvm-1               | CREATE EXTENSION
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: /var/log/gvm/gsad.log: No such file or directory
greenbone-community-edition-gsa-1                  | tail: cannot open '/var/log/gvm/gsad.log' for reading: No such file or directory
greenbone-community-edition-gsa-1                  | tail: no files remaining
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.599 UTC [83] LOG:  starting PostgreSQL 13.11 (Debian 13.11-0+deb11u1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.616 UTC [83] LOG:  listening on IPv4 address "127.0.0.1", port 5432
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.616 UTC [83] LOG:  could not bind IPv6 address "::1": Cannot assign requested address
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.616 UTC [83] HINT:  Is another postmaster already running on port 5432? If not, wait a few seconds and retry.
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.635 UTC [83] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.647 UTC [84] LOG:  database system was shut down at 2023-06-30 10:03:53 UTC
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:53.674 UTC [83] LOG:  database system is ready to accept connections
greenbone-community-edition-gvmd-1                 |  connection 
greenbone-community-edition-gvmd-1                 | ------------
greenbone-community-edition-gvmd-1                 |  connected
greenbone-community-edition-gvmd-1                 | (1 row)
greenbone-community-edition-gvmd-1                 | 
greenbone-community-edition-gvmd-1                 | 
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:55.502 UTC [94] gvmd@gvmd ERROR:  relation "public.meta" does not exist at character 19
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:55.502 UTC [94] gvmd@gvmd STATEMENT:  SELECT value FROM public.meta WHERE name = 'database_version';
greenbone-community-edition-vulnerability-tests-1  | files copied.
greenbone-community-edition-vulnerability-tests-1 exited with code 0
greenbone-community-edition-gvmd-1                 | User created.
greenbone-community-edition-ospd-openvas-1         | OSPD[6] 2023-06-30 10:03:58,714: INFO: (ospd.main) Starting OSPd OpenVAS version 22.5.1.
greenbone-community-edition-ospd-openvas-1         | OSPD[6] 2023-06-30 10:03:58,835: INFO: (ospd_openvas.messaging.mqtt) Successfully connected to MQTT broker
greenbone-community-edition-mqtt-broker-1          | 1688119438: New connection from 172.20.0.5:39967 on port 1883.
greenbone-community-edition-mqtt-broker-1          | 1688119438: New client connected from 172.20.0.5:39967 as ospd (p5, c1, k60).
greenbone-community-edition-gvm-tools-1 exited with code 0
greenbone-community-edition-gvmd-1                 | starting gvmd
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.55 utc:44: No CERT database found
greenbone-community-edition-gvmd-1                 | md   main:MESSAGE:2023-06-30 10h03.57 utc:46:    Greenbone Vulnerability Manager version 22.5.1 (DB revision 254)
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h03.57 utc:46:    Getting users.
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.57 utc:46: No SCAP database found
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.57 utc:46: No CERT database found
greenbone-community-edition-gvmd-1                 | md   main:MESSAGE:2023-06-30 10h03.58 utc:49:    Greenbone Vulnerability Manager version 22.5.1 (DB revision 254)
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h03.58 utc:49:    Modifying setting.
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.58 utc:49: No SCAP database found
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.58 utc:49: No CERT database found
greenbone-community-edition-gvmd-1                 | md   main:MESSAGE:2023-06-30 10h03.59 utc:50:    Greenbone Vulnerability Manager version 22.5.1 (DB revision 254)
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:03:59.413 UTC [100] gvmd@gvmd WARNING:  there is already a transaction in progress
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.59 utc:51: No SCAP database found
greenbone-community-edition-gvmd-1                 | md manage:MESSAGE:2023-06-30 10h03.59 utc:51: No CERT database found
greenbone-community-edition-gvmd-1                 | event port_list:MESSAGE:2023-06-30 10h03.59 utc:51: Port list All IANA assigned TCP (33d0cd82-57c6-11e1-8ed1-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event port_list:MESSAGE:2023-06-30 10h03.59 utc:51: Port list All IANA assigned TCP and UDP (4a4717fe-57d2-11e1-9a26-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event port_list:MESSAGE:2023-06-30 10h03.59 utc:51: Port list All TCP and Nmap top 100 UDP (730ef368-57e2-11e1-a90f-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format Anonymous XML (5057e5cc-b825-11e4-9d0e-28d24461215b) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format CSV Results (c1645568-627a-11e3-a660-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format ITG (77bd6c4a-1f62-11e1-abf0-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format PDF (c402cc3e-b531-11e1-9163-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format TXT (a3810a62-1f62-11e1-9219-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | event report_format:MESSAGE:2023-06-30 10h03.59 utc:51: Report format XML (a994b278-1f62-11e1-96ac-406186ea4fc5) has been created by admin
greenbone-community-edition-gvmd-1                 | libgvm util:   INFO:2023-06-30 10h03.59 utc:51: starting key generation ...
greenbone-community-edition-gvmd-1                 | libgvm util:   INFO:2023-06-30 10h04.02 utc:51: OpenPGP key 'GVM Credential Encryption' has been generated
greenbone-community-edition-pg-gvm-1               | 2023-06-30 10:04:02.241 UTC [100] gvmd@gvmd WARNING:  there is no transaction in progress
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 utc:80: Initializing CERT database
greenbone-community-edition-gvmd-1                 | md manage:WARNING:2023-06-30 10h04.02 utc:78: update_scap: No SCAP db present, rebuilding SCAP db from scratch
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 utc:79: osp_scanner_feed_version: No feed version available yet. OSPd OpenVAS is still starting
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 UTC:80: sync_cert: Updating data from feed
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 UTC:80: update_dfn_xml: dfn-cert-2008.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2008.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 UTC:80: update_dfn_xml: dfn-cert-2009.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2009.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 utc:78: update_scap: Updating data from feed
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.02 utc:78: Updating CPEs
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.03 UTC:80: update_dfn_xml: dfn-cert-2010.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.03 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2010.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.04 UTC:80: update_dfn_xml: dfn-cert-2011.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.04 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2011.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.06 UTC:80: update_dfn_xml: dfn-cert-2012.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.06 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2012.xml
greenbone-community-edition-gsa-1                  | starting gsad
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: /var/log/gvm/gsad.log: No such file or directory
greenbone-community-edition-gsa-1                  | tail: cannot open '/var/log/gvm/gsad.log' for reading: No such file or directory
greenbone-community-edition-gsa-1                  | tail: no files remaining
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-ospd-openvas-1         | OSPD[6] 2023-06-30 10:04:08,911: INFO: (ospd_openvas.daemon) Loading VTs. Scans will be [requested|queued] until VTs are loaded. This may take a few minutes, please wait...
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.08 UTC:80: update_dfn_xml: dfn-cert-2013.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.08 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2013.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.10 UTC:80: update_dfn_xml: dfn-cert-2014.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.10 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2014.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.12 UTC:80: update_dfn_xml: dfn-cert-2015.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.12 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2015.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.14 UTC:80: update_dfn_xml: dfn-cert-2016.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.14 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2016.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.18 UTC:80: update_dfn_xml: dfn-cert-2017.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.18 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2017.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.21 UTC:80: update_dfn_xml: dfn-cert-2018.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.21 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2018.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.26 UTC:80: update_dfn_xml: dfn-cert-2019.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.26 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2019.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.30 UTC:80: update_dfn_xml: dfn-cert-2020.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.30 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2020.xml
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: /var/log/gvm/gsad.log: No such file or directory
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.36 UTC:80: update_dfn_xml: dfn-cert-2021.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.36 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2021.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.41 UTC:80: update_dfn_xml: dfn-cert-2022.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.41 UTC:80: Updating /var/lib/gvm/cert-data/dfn-cert-2022.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.46 UTC:80: update_dfn_xml: dfn-cert-2023.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.46 UTC:80: Updating /var/lib/g
vm/cert-data/dfn-cert-2023.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.49 UTC:80: Updating /var/lib/gvm/cert-data/CB-K13.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.49 UTC:80: Updating /var/lib/gvm/cert-data/CB-K14.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.52 UTC:80: Updating /var/lib/gvm/cert-data/CB-K15.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.55 UTC:80: Updating /var/lib/gvm/cert-data/CB-K16.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h04.58 UTC:80: Updating /var/lib/gvm/cert-data/CB-K17.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.03 UTC:80: Updating /var/lib/gvm/cert-data/CB-K18.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.05 UTC:80: Updating /var/lib/gvm/cert-data/CB-K19.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.07 UTC:80: Updating /var/lib/gvm/cert-data/CB-K20.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.09 UTC:80: Updating /var/lib/gvm/cert-data/CB-K21.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.11 UTC:80: Updating /var/lib/gvm/cert-data/CB-K22.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.16 UTC:80: Updating /var/lib/gvm/cert-data/CB-K23.xml
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.19 UTC:80: SCAP database does not exist (yet), skipping CERT severity score update
greenbone-community-edition-gvmd-1                 | md manage:   INFO:2023-06-30 10h05.19 UTC:80: sync_cert: Updating CERT info succeeded.
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by gsad)
greenbone-community-edition-gsa-1                  | gsad: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by gsad)
greenbone-community-edition-gsa-1                  | cat: 
greenbone-community-edition-gsa-1                  | /var/log/gvm/gsad.log
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | cannot open '/var/log/gvm/gsad.log' for reading
greenbone-community-edition-gsa-1                  | : No such file or directory
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | tail: 
greenbone-community-edition-gsa-1                  | no files remaining
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1                  | 
greenbone-community-edition-gsa-1 exited with code 1
greenbone-community-edition-ospd-openvas-1         | OSPD[6] 2023-06-30 10:05:36,000: INFO: (ospd_openvas.daemon) Finished loading VTs. The VT cache has been updated from version 0 to 202306300559.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.