Linux

How To Use Celery with RabbitMQ to Queue Tasks on an Ubuntu VPS — step-by-step Linux tutorial on Progressive Robot

How To Use Celery with RabbitMQ to Queue Tasks on an Ubuntu VPS

Celery is an asynchronous messaging system that can be used to execute tasks in the background. Written in Python, this flexible system can be used to make your applications more responsive by offloading long-running tasks to the background, while your main program continues to run normally. In this guide, we will cover how to install and use celery with RabbitMQ, a messaging system.

Read more
How To Use IPRoute2 Tools to Manage Network Configuration on a Linux VPS — step-by-step Linux tutorial on Progressive Robot

How To Use IPRoute2 Tools to Manage Network Configuration on a Linux VPS

The IPRoute2 suite of tools was created to replace an aging and patchwork set of utilities for managing network interfaces, addresses, routing, etc. In this guide, we will discuss some of the basics of how to use the iproute2 set of tools, and how you can transition from your normal way of querying and manipulating network resources.

Read more
How To Use MySQL with Your Ruby on Rails Application on CentOS 7 — step-by-step Linux tutorial on Progressive Robot

How To Use MySQL with Your Ruby on Rails Application on CentOS 7

Ruby on Rails uses sqlite3 as its default database, which works great in many cases, but may not be sufficient for your application. If your application requires the scalability, centralization, and control (or any other feature) that a client/server SQL database, this tutorial will show you how to do just that, with MySQL, on CentOS 7 or RHEL.

Read more
How To Use the Bottle Micro Framework to Develop Python Web Apps — step-by-step Linux tutorial on Progressive Robot

How To Use the Bottle Micro Framework to Develop Python Web Apps

Python is a flexible programming language that works great for web applications. There are many frameworks available that can help you get your application running quickly. One of the most minimal of these frameworks is Bottle. In this guide, we will discuss how to install and use this framework to build Python web applications.

Read more
CHAT