1
Sep

Creating MySQL 5.7 Server with Docker

Docker is an open platform for developing, shipping, and running applications. Containers are isolated environments that hold an application along with all the software packages it needs. Running MySQL inside a Docker container lets you separate your database from your code. You can also use a container orchestrator like Kubernetes to scale MySQL independently of your API server instance. [...]

View More
9
Oct

Use SCP Command to Securely Transfer Files

SCP (secure copy) is a command-line utility that allows you to securely copy files and directories between two locations. When transferring data with scp, both the files and password are encrypted so that anyone snooping on the traffic doesn’t get anything sensitive. [...]

View More
1
Jan

How Install Node.js on Ubuntu 20.04

Node.js is a JavaScript runtime for server-side programming. It allows developers to create scalable backend functionality using JavaScript, a language many are already familiar with from browser-based web development. [...]

View More