I am getting the below error in JMeter log while running via jenkins.
I am using JMeter version 2.11r.
The logs are:
2017/09/14 17:00:16 INFO - jmeter.util.JMeterUtils: Setting Locale to en_US
2017/09/14 17:00:16 INFO - jmeter.JMeter: Loading user properties from: E:\J-Meter\bin\user.properties
2017/09/14 17:00:16 INFO - jmeter.JMeter: Loading system properties from: E:\J-Meter\bin\system.properties
2017/09/14 17:00:16 INFO - jmeter.JMeter: Version 2.11 r1554548
2017/09/14 17:00:16 INFO - jmeter.JMeter: java.version=1.8.0_121
2017/09/14 17:00:16 INFO - jmeter.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit Server VM
2017/09/14 17:00:16 INFO - jmeter.JMeter: os.name=Windows 8.1
2017/09/14 17:00:16 INFO - jmeter.JMeter: os.arch=amd64
2017/09/14 17:00:16 INFO - jmeter.JMeter: os.version=6.3
2017/09/14 17:00:16 INFO - jmeter.JMeter: file.encoding=Cp1252
2017/09/14 17:00:16 INFO - jmeter.JMeter: Default Locale=English (United States)
2017/09/14 17:00:16 INFO - jmeter.JMeter: JMeter Locale=English (United States)
2017/09/14 17:00:16 INFO - jmeter.JMeter: JMeterHome=E:\J-Meter
2017/09/14 17:00:16 INFO - jmeter.JMeter: user.dir =C:\Program Files (x86)\Jenkins\workspace\J-meter
2017/09/14 17:00:16 INFO - jmeter.JMeter: PWD =C:\Program Files (x86)\Jenkins\workspace\J-meter
2017/09/14 17:00:16 INFO - jmeter.JMeter: IP: 10.150.246.100 Name: NOD-AF1-lo-D1N FullName: NOD-AF1-lo-D1N.timesgroup.com
2017/09/14 17:00:16 INFO - jmeter.JMeter: Loaded icon properties from org/apache/jmeter/images/icon.properties
2017/09/14 17:00:17 INFO - jmeter.engine.util.CompoundVariable: Note: Function class names must contain the string: '.functions.'
2017/09/14 17:00:17 INFO - jmeter.engine.util.CompoundVariable: Note: Function class names must not contain the string: '.gui.'
2017/09/14 17:00:17 INFO - jmeter.gui.action.LookAndFeelCommand: Using look and feel: javax.swing.plaf.metal.MetalLookAndFeel [Metal, CrossPlatform]
2017/09/14 17:00:17 INFO - jmeter.util.BSFTestElement: Registering JMeter version of JavaScript engine as work-round for BSF-22
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Cannot find .className property for htmlParser, using default
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/html is
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xhtml+xml is
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xml is
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/xml is
2017/09/14 17:00:18 INFO - jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2017/09/14 17:00:18 INFO - jmeter.gui.util.MenuFactory: Skipping org.apache.jmeter.protocol.http.control.gui.WebServiceSamplerGui
2017/09/14 17:00:18 INFO - jmeter.gui.util.MenuFactory: Skipping org.apache.jmeter.protocol.http.modifier.gui.ParamModifierGui
2017/09/14 17:00:18 INFO - jorphan.exec.KeyToolUtils: keytool found at 'C:\Program Files\Java\jre1.8.0_121\bin\keytool'
2017/09/14 17:00:18 INFO - jmeter.protocol.http.proxy.ProxyControl: HTTP(S) Test Script Recorder SSL Proxy will use keys that support embedded 3rd party resources in file E:\J-Meter\bin\proxyserver.jks
2017/09/14 17:00:18 WARN - jmeter.gui.util.MenuFactory: Could not instantiate org.apache.jmeter.protocol.smtp.sampler.gui.SmtpSamplerGui java.lang.NullPointerException
at sun.awt.shell.Win32ShellFolder2.access$200(Unknown Source)
at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source)
at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source)
2017/09/14 17:00:16 INFO - jmeter.JMeter: Version 2.11 r1554548
2017/09/14 17:00:16 INFO - jmeter.JMeter: java.version=1.8.0_121
JMeter is compatible with Java 8 only since version 2.12, as per:
http://jmeter.apache.org/changes_history.html
Version 2.12
Now, JMeter 2.12 is compliant with Java 8.
Anyway, 2.11 is 5 versions away from 3.2, so very old now.
Always use last version of JMeter.
–
–
Some Java developers are a little bit relaxed when it comes to handling edge situations (or they simply don't have enough qualification) as it's evidenced by JENKINS-37013 (even Workspace Whitespace Replacement Plugin exists)
I would recommend re-installing your Java, Jenkins and JMeter into folders without spaces and special characters in path and the issue should go away, for example:
c:\apps\java
c:\apps\jenkins
c:\apps\jmeter
Just in case check out Continuous Integration 101: How to Run JMeter With Jenkins article for more details.
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
site design / logo © 2019 Stack Exchange Inc; user contributions licensed under cc by-sa 3.0
with attribution required.
rev 2019.6.18.34009