Install and Configure SFTP
SFTP(Secure File Transfer Protocol) provides a secure way for file transfer between hosts. It is FTP that runs over SSH(Secure Shell). It runs on the port number which SSH is assigned to. It can be launched either through graphical or command-line. In the article we shall focus on the command-line in Cent OS. Firstly we …
11 Steps to Setup Apache Kafka on Ubuntu 20.04 LTS
Apache Kafka is a free & open-source software platform developed by the Apache Software Foundation. It is written in Scala and Java .It helps to provide a unified, high-throughput, low-latency platform for handling real-time data feeds. It is used for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. There are few steps to …
Read more “11 Steps to Setup Apache Kafka on Ubuntu 20.04 LTS”
Steps to Install RabbitMQ on Ubuntu 20.04
RabbitMQ is a free & open-source message-broker software. It provides a platform to send and receive messages & supports multiple messaging protocols. It is also known as queue manager. There are some steps to install RabbitMQ on ubuntu: Step 1: Update the System. apt-get update Step 2: Add repo & import the key. echo ‘deb …
Steps to install Apache Groovy on Ubuntu 20.04
Apache Groovy is a free & open-source object-oriented programming language. It is Java syntax compatible programming language which is used for built java platform. It is easy to use & learn java syntax. The following steps are given below: Step 1: Update the System. apt-get update Step 2: Install Java. apt install openjdk-11-jdk Check the …
Adding Aliases of Commands
alias is the shortcut for long commands. It may also be used to display the already defined aliases depending with the Linux Distribution. User may use the alias to save time and increase efficiency since long commands might take long typing or syntax error a rising. alias option -p or alias with no option can …