Reputation: 63
I'm new to unix, so maybe my problem is the one in front of the screen... I've a VM with Ubuntu Server 16.04 on it. To connect with it via rdp I installed xfce4 and xrdp. I can connect without problems.
Now I downloaded apache-jmeter-3.3.tgz (binary), unpack it and tried to start JMeter in GUI-mode -as described in the documentation- with doubleclicking on /.../jmeter/bin/jmeter. But only a Vim window pops of in which I can see the code of the file... I am not able to understand that problem. And it seems, that no one on the internet have had the same problem...
Any advices?
Upvotes: 4
Views: 13653
Reputation: 11
If your server runs with GUI then you may face issues starting the JMeter by simple double click on the icon. Try to open a console window navigate to your apache-jmeter.../bin folder and run the following command
sudo bash jmeter.sh
Hope that I help
Upvotes: 0
Reputation: 34516
On linux:
./jmeter
That's it provided you are not on a headless machine (without X)
See:
Upvotes: 8