-
I am able to buildschema without error but when I run script to run test load then it gives below error. Vuser 1:RUNNING |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
First thing to verify is whether you are testing MySQL or PostgreSQL? You say mysql files are stored at location '/opt/mysql-8.0.18-linux-glibc2.12-x86_64/lib' but the error is for PostgreSQL? So the error is libpq.so.5: cannot open shared object file: No such file or directory. libpq is the name of the PostgreSQL library that we need. To resolve this install the PostgreSQL client (also included with the server) and add the lib directory to the LD_LIBRARY_PATH environment variable. There is information on how to do this in the documentation here https://hammerdb.com/docs/ch01s10.html. |
Beta Was this translation helpful? Give feedback.
First thing to verify is whether you are testing MySQL or PostgreSQL? You say mysql files are stored at location '/opt/mysql-8.0.18-linux-glibc2.12-x86_64/lib' but the error is for PostgreSQL?
So the error is libpq.so.5: cannot open shared object file: No such file or directory. libpq is the name of the PostgreSQL library that we need. To resolve this install the PostgreSQL client (also included with the server) and add the lib directory to the LD_LIBRARY_PATH environment variable. There is information on how to do this in the documentation here https://hammerdb.com/docs/ch01s10.html.