ubuntu

How To Configure MySQL Group Replication on Ubuntu 16.04 — step-by-step Linux tutorial on Progressive Robot

How To Configure MySQL Group Replication on Ubuntu 16.04

MySQL replication reliably mirrors the data and operations from one database to another. Conventional replication involves a primary server configured to accept database write operations. Secondary servers copy and apply actions from the primary’s log to its own data set. …

Read more
How to Make a Minecraft Server — step-by-step Linux tutorial on Progressive Robot

How to Make a Minecraft Server

Minecraft is a popular sandbox video game. As of late 2019, it was the second best-selling video game of all time. In this tutorial, you will create your own Minecraft server so that you and your friends can play together. Specifically, you will install the necessary software packages to run Minecraft, configure the server to run, and then deploy the game.

Read more
Создание резервного пула хранения данных с помощью GlusterFS в Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Создание резервного пула хранения данных с помощью GlusterFS в Ubuntu 20.04

Предыдущая версия данного обучающего руководства была написана Джастином Эллингвудом. При хранении любых важных данных очень рискованно иметь единую точку отказа. Хотя многие базы данных и другие программы позволяют…

Read more
How To Create Temporary and Permanent Redirects with Nginx — step-by-step Linux tutorial on Progressive Robot

How To Create Temporary and Permanent Redirects with Nginx

HTTP redirection is a way to point one domain or address to another. There are a few different kinds of redirects (301 Moved Permanently and 302 Found), each of which mean something different to the client browser. You can add a redirect with `rewrite ^/$ http://www.domain2.com redirect;` or `rewrite ^/$ http://www.domain2.com permanent;` in your server configuration. This guide will cover a more in depth explanation of how to implement each kind of redirect in Nginx.

Read more
How To Deploy a Rails App with azk — step-by-step Linux tutorial on Progressive Robot

How To Deploy a Rails App with azk

azk is an orchestration tool that can be used to deploy applications locally and on a server. This tutorial shows how to use azk with a simple Rails application, Stringer. This article is from [azk](http://www.azk.io/).

Read more
CHAT