Your cart is currently empty!
Category: Phoenix Ignited Tech Blog
Install Cmatrix Ubuntu
Install Cmatrix on Linux Install Cmatrix on Linux June 2024 July 2, 2024 This one liner will install Cmatrix on Ubuntu / Fedora Etc. (depending on the OS of choice). Cmatrix is as I describe it falling cyber-snow. Purely visual, the idea originated from the “The Matrix” for more history of this cool program see:…
Installing Traefik with Docker
Installing Traefik with Docker Installing Traefik with Docker July 1, 2024 In this tutorial we will simply launch a traefik docker image with a whoami docker image over a docker network. The official Traefik docs can be found at: https://doc.traefik.io/traefik/getting-started/quick-start/ The only pre-requisites are that you already have docker and docker compose installed. See my…
Setup 2FA on an SSH Server with Recovery in Mind
Setup 2FA on an SSH Server with Recovery in Mind Setup 2FA on an SSH Server with Recovery in Mind June 29, 2024 When you’ve enabled time based 2FA authentication on a remote ssh server, have you ever wondered what you might do if you lost your phone? What about if your server lost track…
Basic Linux Service Commands
Basic Linux Service Commands Basic Linux Service Commands June 29, 2024 This tutorial goes through basic Linux service commands including starting, stopping, reloading, restarting, disabling, enabling, and checking status of services on a Linux machine. Starting Services For most services on a Linux machine, you can start them via simply entering:ย Copy to clipboard sudo…
Why You Might Not Want to Enable Time-Based 2FA on a SSH Server
Why You Might Not Want to Enable Time Based 2FA on a Remote SSH Server Why You Might Not Want to Enable Time Based 2FA on a Remote SSH Server June 29, 2024 This might seem against best principles in server management and protection, but if you’ve ever had a server’s time go hay-wire or…
Encrypt Files with OpenSSL in Linux
Encrypt Files with OpenSSL in Linux Encrypt Files with OpenSSL in Linux June 28, 2024 Do you need to send a sensitive or secret email through Gmail or another email provider? Or have you ever needed to keep sensitive company info on a personal computer while traveling? If so you should encrypt these files so…
Linux Services Reload VS Restart
Linux Services Reload VS Restart Linux Services Reload VS Restart June 28, 2024 Restarting a Linux a service stops and then restarts the service, it breaks all existing connections to the service by stopping the service, and then restarts the service. Reloading a service on the other hand does not break existing services, it simply…
Install Keycloak with Postgres, & Traefik
Install Keycloak with Postgres & Traefik in Dev Mode Install Keycloak with Postgres & Traefik in Dev Mode With Docker Compose on Ubuntu on Localhost June 26, 2024 This tutorial goes through launching Keycloak using Postgres as the database and Traefik for a reverse-proxy in separate containers using Docker compose. This tutorial assumes the following:ย …
Install Docker Compose V1 on Ubuntu
Install Docker Compose on Ubuntu Install Docker Compose on Ubuntu June 25, 2024 Updated: August 27th 2024 This tutorial goes through installing Dcoker Compose V1. Docker Compose V1 stopped receiving updates in July of 2023. It is recommended to install Docker Compose V2 see my tutorial here: https://phoenixignited.tech/install-docker-compose-v2-on-ubuntu Links: Migrate from Docker Compose V1 to…
Launch Keycloak with Postgres DB in Dev Mode
Launch Keycloak with Postgres DB in Dev Mode Launch Keycloak with Postgres DB in Dev Mode With Docker Compose on Ubuntu on Localhost June 25, 2024 This tutorial goes through launching Keycloak using Postgres as the database in separate containers using Docker compose. This tutorial assumes the following:ย You have installed Docker, see my tutorial…