0

I'm trying to run the YourKit agent inside the container. But when I run my application I get: Could not find agent library /home/jboss/app/libyjpagent.so in absolute path, with error: libc.musl-x86_64.so.1: cannot open shared object file: No such file or directory

How can I install additional libc libs needed for YourKit to run in Quarkus with Jib?

user432024
  • 4,392
  • 8
  • 49
  • 85

1 Answers1

0

YourKit agent is statically linked. It has no additional dependencies. Does your Alpine is 64 bit? What is optput of ldd -v /home/jboss/app/libyjpagent.so ?

  • So if I I'm correct Quarkus uses openjdk base images. I used the Azul base image for Java 11 and it works now... – user432024 Jun 03 '22 at 19:47