Reputation: 43
When using JMeter from the command line, I get the following error in my log:
2014/08/05 14:29:43 ERROR - jmeter.config.CSVDataSet: java.io.FileNotFoundException:
/home/stew/YOU_FORGOT_TO_SPECIFY_USERS_CSV_FILE.csv (No such file or directory)
The user.csv file is in the same directory as the testplan.jmx file. Is there an option to specify the file in the command line?
Regards, Wolf
Upvotes: 3
Views: 2629
Reputation: 1
I was using Jmeter to test load Moodle and used options -Jresdir and -Jusersfile options to pass usersfile name
Upvotes: 0
Reputation: 34556
If you use relative file name for path then it should work, as per reference documentation:
Filename Name of the file to be read. Relative file names are resolved with respect to the path of the active test plan. For distributed testing, the CSV file must be stored on the server host system in the correct relative directory to where the jmeter server is started.
For another solution, Have a look at :
You use this function in CSV dataset : ${__P(resdir)} and on command line:
-Jresdir=your path to csv file
Upvotes: 3