πŸ“ Linux

🐧 Linux Commands Every DevOps Beginner Learns While Deploying to EC2

BLOG ARTICLE Published on January 3, 2026

Written by alok-38

Source: DEV Community - Linux 1 min read intermediate

Summary

πŸ” 1. SSH & Remote Access ssh -i DevOps.pem ec2-user@ec2-x-x-x-x.compute-1.amazonaws.com Purpose: Connect securely to an EC2 instance. ssh β†’ Secure Shell i DevOps.pem β†’ Use this private key for authentication ec2-user@host β†’ Login user + EC2 hostname πŸ‘‰ This is how you manually access EC2. ssh user@host "command" Purpose: Run a command on EC2 without logging in interactively. Used in GitHub Actions to: Verify connection Create directories Reload Nginx Example: s...

#linux #cli #tutorial #productivity
0 views
0 likes
0 comments