Pick a Category
Lessons Matching
Running Ansible in CHECK/DIFF mode
Learn how to run your playbooks without having the changes actually apply. This is a great way for Ansible to validate a playbook.
#DevOps #Ansible #Config MgmtSending Webhooks with Python
This video shows you how to send webhooks with Python using the requests module. Sending webhooks with python is a breeze! This works for all releases of Python3 and is a great tutorial for beginners.
#DevOps #PythonHow to check port status and test connections
How to check if a port is listening on Linux? The following is applicable for all Linux/Unix distributions. Ubuntu, CentOS etc.
#DevOps #LinuxChange your hostname in Linux
How to change your hostname in linux
#LinuxMonitoring Dashboard using Telegraf, InfluxDB and Grafana
In this video we go over a modern monitoring stack: Telegraf, InfluxDB and Grafana. The video is based on Ubuntu 20.04 on a Raspberry Pi but it will work for any modern Linux distribution.
#DevOps #Monitoring #RaspberryPIHow to Setup Logging in Python
The basics of setting up logging in Python.
#PythonUsing Ansible to Copy Files
In this lesson we go over how you can copy files to remote hosts using Ansible.
#Ansible #Config MgmtInstalling packages with Ansible
Installing packages with Ansible using apt, yum and package manager.
#Ansible #Config MgmtAnsible Playbooks
Example of simple Ansible Playbook
#Ansible #Config MgmtAnsible Tools: The Ping Module
Learn how to test remote hosts with Ansible Ping.
#DevOps #Ansible #Config MgmtGetting Started with InfluxDB
A quick tutorial on how to get started with InfluxDB
#DevOps #DatabasesReceiving Webhooks with Python
This video shows you how to receive webhooks with Python using the requests module.
#DevOps #PythonPython command line tool - Python Typer Tutorial
In this video, I go over what I think is one of the best modules for creating Python Command Line (CLI) Tools.
#DevOps #PythonPython SSH Client - Paramiko. SSH with Python.
In this lesson we go over how to create SSH sessions using paramiko.
#PythonCall a system command from Python
Ever wonder what the best way to send a system command from Python is? Today we answer that question as I go over the Python 'Subprocess' module. With this module, you can call shell commands and interact with system processes.
#Python