...
Install JMeter in virtual machine
Make the etc/hosts entries
Code Block |
---|
echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts |
Make the DNS entries
Code Block |
---|
echo "nameserver <PrimaryDNSIPIP>" >> /etc/resolvconf/resolv.conf.d/head
echo "nameserver <SecondaryDNSIP>" >> /etc/resolvconf/resolv.conf.d/head
resolvconf -u |
Update the ubuntu software installer
Code Block |
---|
apt-get update |
Check & Install Java
Code Block |
---|
apt-get install -y openjdk-8-jdk |
...
java -version |
Download & install JMeter
Code Block |
---|
mkdir jMeter
cd jMeter
wget http://mirrors.whoishostingthis.com/apache//jmeter/binaries/apache-jmeter-4.0.zip
unzip apache-jmeter-4.0.zip
Follow the instructions in this link for installing plugin manager - https://jmeter-plugins.org/wiki/PluginsManager/
|
Run JMeter
Code Block |
---|
/home/ubuntu/jMeter/apache-jmeter-4.0/bin/jmeter |
The above command will load the JMeter UI. Then navigate to File → Open → Browse and select the test plan jmx file to open.
Install ONAP Policy Framework in virtual machine
...