Category: AlmaLinux

My experience...

Passwordless SSH Setup for VS Code on Windows

Passwordless SSH Setup for VS Code on Windows (for AlmaLinux) A simple, 12‑year‑old‑level guide. 🎯 Goal Connect to your AlmaLinux server from VS Code without typing your password every time. This uses SSH keys. 1. Check if you already have an SSH key on Windows Open PowerShell and run: ls $HOME.ssh If you see files like: id_rsa + id_rsa.pub id_ed25519 + id_ed25519.pub Then you already have a key

Generate a Self-Signed SSL Certificate for Local Dev aaPanel

To address the "Your connection to this site isn't secure" warning for your test websites on a local development server running AlmaLinux and AApanel, you can create a self-signed SSL certificate. This process involves generating a certificate and configuring your server to use it. Here's a step-by-step guide based on the information provided: Step 1: Generate a Self-Signed SSL Certificate Open a

AlmaLinux Manual Install PHP Extensions

AlmaLinux missing extensions installed manually is easy to do. Here's an easy way to manually of install extensions. This example was for aaPanel running AlmaLinux 8. In this example we will install bz2: 1. `cd /www/server/php/82/src/ext/bz2` 2. `/www/server/php/82/bin/phpize` 3. `./configure --with-php-config=/www/server/php/82/bin/php-config` 4. `make` 5. `make test` 6. `make install` As