Introduction to the SFTP SFTP stands for SSH File Transfer Protocol. As its name suggests, it’s a secure way to transfer files between machines using an encrypted SSH connection. Despite the name, it’s a completely different protocol than FTP (File Transfer Protocol), though it’s widely supported by modern FTP clients. In this article i’ll tell…
Category
Tutorial
How To Install and Manage RabbitMQ on Ubuntu 20.04
What is RabbitMQ and When to Use ? RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol and has since been extended with a plug-in architecture to support Streaming Text Oriented Messaging Protocol, MQ Telemetry Transport, and other protocols. RabbitMQ is one of the market’s most common message broker solutions,…
How to Enable ENA support for older EC2 Instances in AWS.
ENA stands for Elastic Network Adapter and all the newer EC2 class in AWS requires elastic network adapter. So how you can migrate older ec2 instances to newer class? There are many options to enable enhanced networking with ENA for ec2 instances and same is also explained in AWS official tutorial. Here in this article…
Speed Test – Ubuntu Terminal
1. How to check Internet Speed via Terminal in Linux or Ubuntu? The easiest way to test internet speed in Ubuntu terminal is installing and using speedtest-cli. You can check the detailed information in this blog regarding downloading, installing and usage of it. If you don’t want to install speedtest-cli then also you can directly…
12 security headers you should use to prevent Vulnerabilities.
Security is as important as the website’s content and SEO, and thousands of websites are hacked because of misconfiguration or lack of security. If you are a website owner or security engineer looking to protect your website from attacks by clickjacking, code injection, MIME types, cross site scripting, cookie hijacking etc. then this article will help…
How to get Instagram account id & Access token
Generating a token to be used in your application is actually fairly straightforward once you know the magical incantation. Just do the following: In order to generate instagram token you have to login to Instagram account for which you want to generate the token. Once logged in visit the Instagram Developer‘s site and go to…
Linux – Find Archive & Delete older files
In this article we are going to find older files and then archive and delete after certain days. For this to achieve we will be using certain linux bash commands mentioned below in details. 1. Find & delete Explanation First part is the find & path where your files are located. Don’t use wildcard *…
Basic 301 Redirects using .htaccess Rules
Redirect a single page. Redirect an entire site or domain to a new one. Redirect an entire site to a sub folder. Redirect a sub folder to different website. Redirect a file extension but retain the page name. Example: If you want an .html extension to use the same filename but use the .php extension….
How to switch to HTTP/2 from HTTP/1.1 in Apache on Ubuntu 18.04
Requirements HTTPS – HTTP/2 only works with HTTPS. If you have not switched your site to HTTPS, you can switch to https using let’s encrypt free SSL certificate. Follow this article to switch to SSL. Apache Version – The required minimum version of Apache to support HTTP/2 is 2.4.24. If you are on the LTS…
How to auto stop and auto start AWS EC2 instances at regular intervals using AWS Lambda.
Amazon Web Services Note: This is cheapest and easiest solution. For a more robust solution, see AWS Instance Scheduler. In this setup, you’ll create Lambda functions that stop and start your EC2 instances. This function will use Instance tags to identify which instances needs to be start and stop at intervals or certain times that you specify….