vurun in TPC-C fails #342
-
|
In hammerdb 4.0 TPC-C, "vurun" command fails with error "invalid command name "cal/bin/tclsh8.6"". Below is the output when we run "vurun" Error in Virtual User 19: invalid command name "cal/bin/tclsh8.6" hammer-tpcc-run.log In the logs the my_sql host IP address has been masked for reasons of privacy How do we fix this? We want to run tpc-c benchmarking. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
It looks like in your script you have a bare line of
It is possible that a typing error removed part of the line included the preceding #. This line allows you to also run directly in the tcl shell, e.g.
However, when running the CLI this line is automatic, so you can either make sure it has a # so it doesn't detect it as a command or remove the line. |
Beta Was this translation helpful? Give feedback.
It looks like in your script you have a bare line of
cal/bin/tclsh8.6It is possible that a typing error removed part of the line included the preceding #.
This line allows you to also run directly in the tcl shell, e.g.
#!/usr/bin/tclshHowever, when running the CLI this line is automatic, so you can either make sure it has a # so it doesn't detect it as a command or remove the line.