#jmeter #performance_testing
jmeter recording whenever i try to create a ApacheJMeterTemporaryRootCA certificate .it will not create and shown the mentioned notification. plese help me to resolve this.
i am try to run the http scribt recorder in jmeter but i is not working.
help me to run the http recording test.
CodePudding user response:
JMeter tries to create the proxyserver.jks
file under it's "bin" folder and it doesn't look like the user you're launching JMeter from has write permissions to that folder.
You either need to:
- Use chown or chmod command to grant your current user the write permissions to the "bin" folder of your JMeter installation
- Or amend
proxy.cert.file
JMeter Property to point to the location where you have write access to (normally it should be inside your user home folder)
In any case the JMeter version you're using is kind of too old, as per JMeter Best Practices:
The performance of JMeter is being constantly improved, so users are highly encouraged to use the most up to date version. Ensure you always read changes list to be aware of new improvements and components. You should absolutely avoid using versions that are older than 3 versions before the last one.
So it worth installing the latest stable version of JMeter (JMeter 5.5 as of now)