I am using Docker Compose approach to run Greenbone Community Edition with the stock Docker Compose file as advertised in the documentation.
My workflow includes running the following on a weekly basis:
docker compose pull
to get the latest container images, especially for feeds, anddocker compose up -d
to update running containers with new images.
It has been running fine for the last 1.5 years.
I have encountered the first problem last week where all my scans were “interrupted at 100%”. The error was something related to sql_exec_internal
.
I decided to pull latest container images and re-run containers with these images. I noticed that the logs are filled with following error (and cascading errors and warnings):
gvmd-1 | md manage:WARNING:2024-12-31 00h25.27 utc:1143: sql_exec_internal: PQexec failed: ERROR: could not load library "/usr/lib/postgresql/13/lib/llvmjit.so": /usr/lib/x86_64-linux-gnu/libLLVM-11.so.1: undefined symbol: _ZN4llvm18RgPressureTracker11closeBottomEv, version LLVM_11
pg-gvm-1 | 2024-12-31 00:25:27.647 UTC [2957] gvmd@gvmd ERROR: could not load library "/usr/lib/postgresql/13/lib/llvmjit.so": /usr/lib/x86_64-linux-gnu/libLLVM-11.so.1: undefined symbol: _ZN4llvm18RgPressureTracker11closeBottomEv, version LLVM_11 pg-gvm-1 | 2024-12-31 00:25:27.647 UTC [2957] gvmd@gvmd CONTEXT: SQL function "report_severity_count" statement 1
Is the pg-gvm
image broken? Do we have any idea where I should look into?