Skip to main content

Posts

Showing posts from September 29, 2018

Install JMeter

Install JMeter Apache JMeter is an application that used to as load testing tool for performance testing of the verity of services. In this post, We will learn how to install JMeter. STEP 1 Download JMeter form official site   http://jmeter.apache.org/download_jmeter.cgi STEP 2 Install JMeter on Linux $ // STEP 1: Extarct the Downloaded zip file $ cd to/<JMeter-Folder>/bin $ sh jmeter.sh Install JMeter on MAC $ // STEP 1: Extarct the Downloaded zip file $ cd to/<JMeter-Folder>/bin $ sh jmeter.sh Install JMeter on Windows $ // STEP 1: Extarct the Downloaded zip file $ cd to/<JMeter-Folder>/bin $ click on jmeter.bat Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

How to install certificates for command line

Install Certificates In this post, We will learn how to install the certificate on Ubuntu with the command line. Open your terminal and execute the following sequence of command. Here mycert.cer is the certificate that you want to install. $ sudo cp mycert.cer /usr/share/ca-certificates/mycert.pem $ sudo dpkg-reconfigure ca-certificates $ sudo update-ca-certificates $ git config --global http.sslCAInfo /usr/share/ca-certificates/mycert.pem Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.