LATEST ARTICLES

Set or Change the Time Zone in Linux

A time zone is a geographic region that has the same standard time. Typically the time zone is set during the installation of the operational system, but it can...

Redirect HTTP to HTTPS in IIS

Before we start We assume you already have installed an SSL certificate in IIS.Also added the SSL binding to your websites with port 443 and installed...

Install an SSL/TLS Certificate In IIS

What You’ll Need 1. Your server certificate This is the certificate you received from the CA for your domain. You may have...

Ora2Pg – Database Migration Tool

Ora2Pg - Oracle to PostgreSQL database schema converter Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects...

How to move the docker data directory to another location on Linux

Docker is a popular container management platform that can dramatically speed up your development workflow. It is available as a package on major Linux distributions, including Ubuntu.

Install Docker CE on RHEL 7 Linux

The steps shared here are for the installation of Docker CE on RHEL 7 Linux. Docker is the main dominant container runtime engine used for Development and running of...

Docker image location on windows 10

Windows - Location of docker image? Docker images from docker hub or other official images that is pulled are stored in the Hyper-VM and the Hyper-V VM harddrive itself is usually in C:UsersPublicDocumentsHyper-VVirtual...

InstallPHP 7.3.x on RHEL 6.x

Download PHP wget "https://downloads.php.net/~cmb/php-7.3.x.tar.gz" tar xzvf php-7.3.x.tar.gz cd php-7.3.x The compiled program starts by belonging to this user and user group.Compile errors to resolve dependencies yum install -y libxml2-devel yum install -y bzip2-devel yum install...

How to Clear RAM Memory Cache, Buffer and Swap Space on Linux

How to Clear Cache in Linux? Every Linux System has three options to clear cache without interrupting any processes or services. 1. Clear PageCache only. # sync; echo 1 > /proc/sys/vm/drop_caches 2. Clear dentries and inodes. # sync;...

Passwordless SUDO for a specific User in Linux

This can be done is 3 quick steps: Edit sudoers file: sudo nano /etc/sudoers Find a line which contains Allow root to run any commands anywhere Below that line add: username ALL=(ALL) NOPASSWD: ALL , for all username...