sriram ravisriramravi.hashnode.dev·Jan 9, 2025How to Set Up Key-Based and Password-Based SSH for a Newly Created User on an EC2 InstanceHow to Set Up Key-Based SSH for a Newly Created User on an EC2 Instance 1. Create a New EC2 Instance First, create an EC2 instance using the AWS Management Console. Once the instance is running, you can log in via SSH. 2. Login to EC2 Instance Use...Devops articles
Kushal Agrawalkushal9897.hashnode.dev·Dec 22, 2024Understanding SSH: A Simple GuideIf you use computers, have you ever wanted to be able to remotely access one computer from another and maybe control that machine no matter how distant it is? SSH or also known as Secure Shell, is the solution to that. It is like a door through which...Ssh beginner
Ummer Farooqblogs.ummerfarooq.dev·Dec 19, 2024Step-by-Step Guide to Linking an SSH Key with Your GitHub Repositories1. Generate a New SSH Key Run the following command to generate a new SSH key specifically for GitHub: ssh-keygen -t ed25519 -C "your_email@example.com" -f ~/.ssh/id_github Explanation: -t ed25519: Specifies the key type. -C "your_email@example.co...GitHub
Ishwor Kafleishwor.hashnode.dev·Dec 19, 2024Setting Up Multiple SSH Keys for GitHub on LinuxManaging multiple SSH Keys becomes crucial when: You work with multiple GitHub accounts: personal and work accounts require separate ssh keys to maintain boundary between the projects. You contribute to multiple projects hosted under different git ...28 readsGit
Andriawanverri.andriawan.web.id·Dec 15, 2024Remote SSH tanpa PasswordTulisan ini adalah bagian dari Remote SSH Series, sehingga untuk bisa membaca secara menyeluruh dan berkesinambungan, alangkah lebih baik bisa membaca secara urut dari link series berikut. Me-remote device atau khususnya server biasa dilakuan oleh p...SSH Remote Serverssh
Anik Kumar Nandiblog.anikweb.me·Nov 10, 2024How to Set Up GitHub in a Local Environment on UbuntuStep 1: Install Git Git is an essential tool for version control, allowing you to track changes to your code, collaborate with others, and maintain a history of your projects. On Ubuntu, installing Git is straightforward: Update Your System: Before...33 readsgithub on ubuntu
Uzomah Chiemerieuzomahchiemerie.hashnode.dev·Nov 5, 2024How to create a Linux (Ubuntu) Virtual Machine in Azure using a Public Key.INTRODUCTION Creating and connecting to a Linux VM on the Azure portal might seem challenging at first, but rest assured, it’s quite straightforward and only slightly different from setting up a Windows VM. In this comprehensive guide, I'll walk you ...Linux
Shagufta Gulnaar Mohammedshaguftas-blogs.hashnode.dev·Oct 24, 2024Understanding SSH: A Gateway to Secure Remote ConnectionsIn this blog, we'll explore how SSH works, focusing on connecting to an EC2 instance and the importance of keys in securing your connection. What is SSH? SSH (Secure Shell) is a network protocol that allows you to connect to a remote system securely ...1 like·26 readsssh
Anirban Banerjeeanirbanbanerjee13.hashnode.dev·Oct 16, 2024EC2 Connectivity Made Easy: A Guide to SSH Access and CommunicationIn today's cloud-driven world, Amazon EC2 instances are a cornerstone for deploying scalable applications. However, establishing secure connections between your local machine and EC2 instances, as well as between multiple EC2 instances, is crucial fo...ec2
Saksham Kambleskm-saksham.hashnode.dev·Oct 16, 2024Master SSH to Safely Access and Control Your EC2 InstancesAssignment: Mastering SSH Key Authentication and EC2 Connections: A Step-by-Step Guide 🛠️🔐 In today's world of cloud computing and remote servers, secure communication and authentication are essential. One of the best ways to ensure a secure connec...1 likeDevops