-1

While running bat file in jmeter it gives me Can't find dependent libraries errorlevel=1 error. Can anyone pls provide me the solution

I tried to run jmeter

Olaf Kock
  • 46,930
  • 8
  • 59
  • 90

1 Answers1

0

Can't find dependent libraries is one of error messages for the UnsatisfiedLinkError which happens when a .dll (or .so) file is not in the java.library.path

JMeter per se doesn't load any native libraries (at least as of JMeter 5.5) so if you're using a plugin which does - check its documentation regarding how the native libraries need to be provided.

If you're not using any plugins the error means that your Java installation is broken somehow, I would suggest performing clean installation of the JDK

Dmitri T
  • 159,985
  • 5
  • 83
  • 133