Month: December 2019

How to configure SSL in Tomcat8 using ubuntu 16.04

With this post, We Will install and configure Self Sign SSL with Tomcat 8 uisng ubutnu 16.04/18.04 Generating Keystore  Step 1:- First you need to generate the keystore by following commands with root privileges. sudo -i keytool -genkey -alias Your_domain_here -keyalg RSA -keystore /etc/pki/keystore Adding ssl code in Tomcat’s server.xml  Step 2:- After this, You […]

How to install Apache JMeter in Ubuntu 16.04/18.04

Apache Jmeter is a free and opensource load testing tools, Apache Jmeter is Apache Project, Apache Jmeter written in JAVA and Developed by Apache Software Foundation. Install Java and dependencies First you need update ubuntu repository and  install java by following commands with root privileges. apt-get updateapt-get install default-jdk -y apt-get install  unzip xvfb libxi6 libgconf-2-4 -y […]

How to install and configure AWS CLI on Ubuntu 16.04/18.04

Step 1 Install python in your linux system by following the commands To verify version of python use the following command. This will show you version of python, make sure you must have requires Python 2.6.5 or higher, Install using pip. To install awscli in your linux based operating system use the following command. aws […]

How to install Ansible on Ubuntu 16.04/18.04 LTS

Ansible is an open-source programming provisioning, arrangement the board, and application-organization instrument empowering foundation as code, It runs on numerous Unix-like frameworks, and can design both Unix-like frameworks just as Microsoft Windows. It incorporates its own definitive language to depict framework design. Ansible was composed by Michael DeHaan and obtained by Red Hat in 2015. […]

How to install NTP server and client on ubuntu 16.04/18.04

NTP full from is Network Time Protocol, Its a network protocol which clock synchronization with computer systems over packet-switched, Originally NTP developed by Professor David L. Update ubuntu repository Install NTP server using ubuntu 16.04/18.04. apt-get update && apt-get install ntp -y Get NTP pool server Check you nearest NTP pool server list by follwoing […]

How to install Apache Tomcat in ubuntu 16.04 LTS

Apache Tomcat is a web worker and servlet compartment that is utilized to serve Java applications. Tomcat is an open source usage of the Java Servlet and JavaServer Pages advancements, delivered by the Apache Software Foundation. This instructional exercise covers the essential establishment and some design of the most recent arrival of Tomcat 8 on […]

How to Install Apache ActiveMQ on Ubuntu 16.04

Apache ActiveMQ is an free and open source message broker, Developed by: Apache Software Foundation, Written in C, C++, Java, Ruby, Perl, Python, PHP, C#.  Installing Java sudo -iapt-get updateapt-get install default-jdk -y Get Java version java -version You should get output like this. openjdk version “1.8.0_232″OpenJDK Runtime Environment (build 1.8.0_232-8u232-b09-0ubuntu1~16.04.1-b09)OpenJDK 64-Bit Server VM (build […]

How to Install VirtualBox on Ubuntu 16.04 LTS

Oracle VirtualBox is a free and open source hosted hypervisor virtualization, VirtualBox developed by Oracle Corporation, Written in: C, C++, x86 assembly, With this post we will install VirtualBox on ubuntu linux. Step 1: Adding Repo To install VirtualBox on ubutnu 16.04, You need to add and update the ubuntu repo by following commands. Step […]

How to Install Memcached on ubuntu 20.04 LTS

Memcached is a free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. In this post, We will install and configure […]

Scroll to top