You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
I'm making a build plan that consists so far of a build plan that launches a jmeter test. But i encounter a problem where the command works when i test it directly on the server, but it doesn't work when i test from bamboo.
It says that it cannot open a certain file, that file is on another server. Once again if i execute the same command int the server's cmd it works...
The command:
C:/Jmeter/apache-jmeter-3.3/bin/jmeter.bat -J jmeter.save.saveservice.output_format=xml -n -t H:/test/restTest.jmx -l C:/UserTemp/result.jtl
On Bamboo this command outputs:
Could not open H:/test/restTest.jmx
And if i try directly on the server the test passes with an OK status.
I tried stopping bamboo and starting it with "Run As Administrator" but i got the same result could no open.
On the other server i've set that file to full control for everyone and same result from bamboo.
Am i missing something?
Hi Some Guy,
I'm assuming the H: is a mapped network drive. It looks like this drive is not available for the user you're using to start Bamboo or the remote agent.
Have you tried adding a script task right before this task to mount the H: drive during the build execution? It should be something like this:
net use H: \\<SERVER NAME>\<share name>
thanks.
This worked. Thanks!
I needed a if exist aswell or the second run will trigger an error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.