Configuration Management

5 Ways to Improve your Production Web Application Server Setup — step-by-step Devops tutorial on Progressive Robot

5 Ways to Improve your Production Web Application Server Setup

Once your application is up and running in a cloud server environment, you may be wondering how you can improve your server environment to make the leap from “it works” to a full-fledged production environment. This article will help you get started with planning and implementing a production environment by creating a loose definition of “production”, and by showing you some components that you can add to your existing architecture to make the transition.

Read more
Automating Server Setup with Ansible: A the cloud provider Workshop Kit — step-by-step Devops tutorial on Progressive Robot

Automating Server Setup with Ansible: A the cloud provider Workshop Kit

This tutorial, designed to accompany the Slides and speaker notes for the Automating Server Setup with Ansible Workshop Kit, will show you how to set up an inventory file and execute a set of provisioning scripts to fully automate the steps necessary to set up a remote LEMP server on Ubuntu 18.04 and to deploy a demo Laravel application to this system.

Read more
How To Access System Information (Facts) in Ansible Playbooks — step-by-step Devops tutorial on Progressive Robot

How To Access System Information (Facts) in Ansible Playbooks

By default, before starting to execute the set of tasks defined in a playbook, Ansible will take a few moments to gather information about the systems that are being provisioned. These are known as *facts*. Ansible facts contain information such as network interfaces and addresses, the operating system running on remote nodes, available memory, among other things. Learn how to access this information from your playbooks.

Read more
How to Debug and Fix Common Docker Issues — step-by-step Docker tutorial on Progressive Robot

How to Debug and Fix Common Docker Issues

In this troubleshooting guide aimed at people new to Docker, you’ll troubleshoot problems when building Docker images, resolve naming collisions when running containers, and fix issues that come up when communication between containers.

Read more
How to Install and Configure Ansible on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How to Install and Configure Ansible on Ubuntu 14.04

Configuration management systems are designed to make controlling large numbers of servers easy for administrators and operations teams. They allow you to control many different systems in an automated way from one central location. Ansible is a simple configuration management system.

Read more
How To Install and Configure Ansible on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install and Configure Ansible on Ubuntu 22.04

Configuration management systems are designed to streamline the process of controlling large numbers of servers, for administrators and operations teams. They allow you to control many different systems in an automated way from one central location.

Read more
How To Manage Multiple Servers with Ansible Ad Hoc Commands — step-by-step Devops tutorial on Progressive Robot

How To Manage Multiple Servers with Ansible Ad Hoc Commands

With Ansible, you can use ad hoc commands to execute one instruction at a time on one or more remote servers. They are ideal to perform tasks that aren’t executed frequently, and to consult information about the remote systems that Ansible manages. In this cheatsheet guide, you’ll learn how to use ad hoc commands to manage one or more servers with Ansible, and how to perform some common tasks this way.

Read more
How To Use Git to Manage your User Configuration Files on a Linux VPS — step-by-step Linux tutorial on Progressive Robot

How To Use Git to Manage your User Configuration Files on a Linux VPS

The ability to customize tools to suit your needs is one of the great advantages of many Linux utilities. However, when you find yourself working on a new server, there is the issue of getting the settings you are comfortable with working in a new environment. Keeping your personal configuration tools in version control can help you easily pull in your settings to a new environment. In this guide, we’ll discuss exactly how you can do that.

Read more
CHAT