devops-basics

SSH

1. What is SSH?

Overview

Official website documentation of SSH

2. Prerequisites

3. Installation

How to install SSH?

On most Linux distributions, the SSH client is installed by default. To install the SSH server:

# Debian/Ubuntu
sudo apt update
sudo apt install openssh-server -y
sudo systemctl enable ssh
sudo systemctl start ssh

# RHEL/CentOS
sudo yum install openssh-server -y
sudo systemctl enable sshd
sudo systemctl start sshd

Verify it’s running:

sudo systemctl status ssh

4. Basics of SSH

Getting started with SSH

5. Beyond the Basics

Exploring Advanced Examples

6. More…

Cheatsheet