All Stories

How to flush the DNS cache from the CLI

Clearing the DNS cache usually fixes issues related to not resolving new or updated existing domain records. Let’s see how it’s done from the command line though.

In DNS, Feb 25, 2022

MySQL fix: 'Waiting for table metadata lock'

Working with high load SQL queries or big transactions, you may face: Waiting for table metadata lock. Here I’m going to list some useful solutions that might help you.

In MySQL, Feb 24, 2022

How to fix 'WARNING: Connection pool is full' in Docker Compose

If you have been working with Docker Compose stacks for a while, you might have come across the following warning message: WARNING: Connection pool is full, discarding connection <...

In Docker, Feb 23, 2022

How to install Docker Compose on Ubuntu 21.10

This article is strictly focused on installing docker-compose on Ubuntu 21.10, so please make sure that you have Docker installed before jumping on the installation steps.

In Docker, Ubuntu, Feb 22, 2022

How to export and import PostgreSQL tables using CSV

Export and Import operations in PostgreSQL and any other relation database management system for that matter, could include a couple of use-case scenarios, for instance data analysis....

In PostgreSQL, Feb 21, 2022

How to install Nginx on Ubuntu 21.10

Since Ubuntu 21.10 has been released there was an immediate interest in using it as an OS Server. In this tutorial, we are going to see how to install Nginx on Ubuntu 21.10.

In Nginx, Ubuntu, Feb 20, 2022

How to upgrade and downgrade extensions in PostgreSQL

Extensions in PostgreSQL are basically packages with additional features. The popular ones include TimescaleDB, PostGIS, pg_stat_statements, ZomboDB and postgres_fdw. Today’s focus go...

In PostgreSQL, Feb 19, 2022

Apple M1 Chip Docker Error - no matching manifest for linux/arm64/v8

Most of the Docker images are not compatible with the newest Apple Silicon M1 chip throwing no matching manifest for linux/arm64/v8. Let’s see how to resolve the issue.

In Docker, Feb 18, 2022

How to install, enable and list TimescaleDB version in PostgreSQL

TimescaleDB is a PostgreSQL extension that enables easier approach when working with time-series data. Today we are going to see how can we install, enable/disable, get the TimescaleD...

In PostgreSQL, Feb 17, 2022

How to run Django application server

Django is a python free and open-source framework that is widely used nowadays. It offers a lot of libraries and functions that can be easily invoked. Running Django app with a local ...

In Python, Feb 16, 2022